Quote:
Originally Posted by kh99
Do you mean you have your site configured for UTF-8 encoding?
Someone was having a similar problem recently, and the solution was to call utf8_decode() on the string.
|
I did try what you have said, characters where changed to question marks instead.
I have changed this line
Code:
$templater->register('pagetitle', $pagetitle);
to
Code:
$templater->register('pagetitle', utf8_decode($pagetitle));
Any other suggestions? :/