fix at line 738:
// clean up text
// $faq_topic = preg_replace(‘~�*([0-9a-f]+);~ei’, ‘chr(hexdec(“\\1”))’, $faq_topic);
// $faq_tag = preg_replace(‘~�*([0-9a-f]+);~ei’, ‘chr(hexdec(“\\1”))’, $faq_tag);
// bugfix
$faq_topic = preg_replace_callback(‘~�*([0-9a-f]+);~i’,
create_function (‘$matches’, ‘return chr(hexdec($matches[0]));’), $faq_topic);
$faq_tag = preg_replace_callback(‘~�*([0-9a-f]+);~i’,
create_function (‘$matches’, ‘return chr(hexdec($matches[0]));’), $faq_tag);
fix at line 635:
// clean up text
// $faq_topic = preg_replace(‘~�*([0-9a-f]+);~ei’, ‘chr(hexdec(“\\1”))’, $faq_topic);
// $faq_tag = preg_replace(‘~�*([0-9a-f]+);~ei’, ‘chr(hexdec(“\\1”))’, $faq_tag);
// bugfix
$faq_topic = preg_replace_callback(‘~�*([0-9a-f]+);~i’,
create_function (‘$matches’, ‘return chr(hexdec($matches[0]));’), $faq_topic);
$faq_tag = preg_replace_callback(‘~�*([0-9a-f]+);~i’,
create_function (‘$matches’, ‘return chr(hexdec($matches[0]));’), $faq_tag);
any chance you can incorporate this or similar in next release so i dont lose it?