|
Title: UTF-8^Wcharser issues Post by: rsd on January 25, 2010, 06:10:14 AM Hello again,
One cause of problems with utf-8 and other charset issues is the use of char_to_html() in functions. php. change that to this: Code: function char_to_html($string) { global $lang; return htmlentities($string, ENT_QUOTES, $lang['charset']); } |