Today after installing such pretty tool as mod_dphpbb3_last_topics I received a ton of such errors
Warning: cannot yet handle MBCS in html_entity_decode()! in helper.php in line 130
After googling I found this article. I tried to replace:
$title = html_entity_decode($title, ENT_QUOTES, 'UTF-8'); with $title =
utf8_decode
($title);
but it brakes UA/RUS lang. After brainstorm I made following changes in code:
Was:
$title = html_entity_decode($title, ENT_QUOTES, 'UTF-8');
Become:
$title = html_entity_decode($title);
No comments:
Post a Comment