Forum Replies Created

Viewing 16 replies (of 16 total)
  • Thread Starter fogcity

    (@fogcity)

    fix at line 738:

    // clean up text
    // $faq_topic = preg_replace(‘~&#x0*([0-9a-f]+);~ei’, ‘chr(hexdec(“\\1”))’, $faq_topic);
    // $faq_tag = preg_replace(‘~&#x0*([0-9a-f]+);~ei’, ‘chr(hexdec(“\\1”))’, $faq_tag);
    // bugfix
    $faq_topic = preg_replace_callback(‘~&#x0*([0-9a-f]+);~i’,
    create_function (‘$matches’, ‘return chr(hexdec($matches[0]));’), $faq_topic);
    $faq_tag = preg_replace_callback(‘~&#x0*([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(‘~&#x0*([0-9a-f]+);~ei’, ‘chr(hexdec(“\\1”))’, $faq_topic);
    // $faq_tag = preg_replace(‘~&#x0*([0-9a-f]+);~ei’, ‘chr(hexdec(“\\1”))’, $faq_tag);
    // bugfix
    $faq_topic = preg_replace_callback(‘~&#x0*([0-9a-f]+);~i’,
    create_function (‘$matches’, ‘return chr(hexdec($matches[0]));’), $faq_topic);
    $faq_tag = preg_replace_callback(‘~&#x0*([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?

Viewing 16 replies (of 16 total)