--- bawstats.stats.inc 2009-10-03 00:37:47.000000000 +0200 +++ bawstats.stats.inc2 2009-11-17 13:56:01.000000000 +0100 @@ -459,5 +459,9 @@ } } $content .= ""; + if (function_exists('mb_detect_encoding')) + $content = drupal_convert_to_utf8($content, mb_detect_encoding($content, 'UTF-8, ISO-8859-1, ISO-8859-2')); + else + $content = drupal_convert_to_utf8($content, 'ISO-8859-1'); return filter_xss($content, array('a', 'em', 'strong', 'cite', 'code', 'ul', 'ol', 'li', 'dl', 'dt', 'dd', 'table', 'td', 'tr', 'th', 'div', 'img', 'br', 'h1', 'h2', 'h3')); }