Page 1 of 1

Error with Titles and Italics

PostPosted: 16 Jan 2011, 03:50
by BaconCatBug
Hey there Snacko, thought I'd make a new thread rather than carry on off-topicing the old one.

In any case, I got me a Garamond Italic font, and configured it to use it for the Title Italics. However, it is replacing all instances of "en" and "il", not "en-" and "il-", which leads to funny results for anything with the word "Omen" Or "Genesis" in it (for example). :P

Re: Error with Titles and Italics

PostPosted: 16 Jan 2011, 14:05
by Snacko
I patched this at some point, but I guess didn't attach it in the updated package.
just find
Code: Select all
 str_replace('en', '#en#', $title);
 str_replace('il', '#il#', $title);
in Card.php and replace with
Code: Select all
 str_replace('en-', '#en#-', $title);
 str_replace('il-', '#il#-', $title);
it will then only italic the hyphenated en and il