4
OK, i mean other but OK :)
1st: try set this:
just under your in theme.html in your theme folder
This is for html5 but you just try
(must clear all chache)
if not
Try set this:
mb_internal_encoding("UTF-8");
?>
must be at the top in your article.php file in your news folder
if not
find the line
$string = preg_replace('/s+?(S+)?$/', '', substr($string, 0, $length+1));
around line 650 in file function.php in your news/include folder
and replace with
$string = preg_replace('/s+?(S+)?$/', '', mb_substr($string, 0, $length+1));
hope it will work :)