対処方法:
To correct this problem, upgrade your server to use PHP version 5. If that is not possible, you can make a change to line 209 of the file libraries/joomla/application/pathway.php. In version 1.5.15, this line is as follows:
$item->name = html_entity_decode($name, ENT_COMPAT, 'UTF-8');
To fix this problem on a site running PHP 4.x, change line 209 to:
$item->name = html_entity_decode($name);
No comments:
Post a Comment