02-04-2011, 05:03 AM
One more modification to correct work with UTF-8 - edit file out/out.ViewFolder.php .
Locate this line (2x - lines 100 and 120):
change to:
Locate this line (2x - lines 100 and 120):
PHP Code:
if (strlen($comment) > 50) $comment = substr($comment, 0, 47) . "...";
change to:
PHP Code:
if (strlen($comment) > 50) $comment = mb_substr($comment, 0, 47, "utf-8") . "...";