• Comment text is displayed uncorrectly in 1.0 version. The post text is fine. option use_htmltrans is false.
    Because the comment text is correct in editing window, the problem should be related to loading process. it there some changes in comment_text(); ?

Viewing 2 replies - 1 through 2 (of 2 total)
  • replace the line 411 in /wp-include/kses.php with:
    $string = ereg_replace(‘/\xad+/’, ”, $string); # deals with Opera “feature”
    this works fine now for me.

    Thread Starter mulberry

    (@mulberry)

    Thank you. It works for me.
    Before I see your reply, I have find a solution which I don’t know the why? 🙂
    1. change the ‘comment_text’ in add_filter(‘comment_text’, ‘wpautop’) at the end of var.php to a phrase what ever you want, for example, comment_text_f;
    2. find the function comment_text() in template_functions.php; change “$comment_text = apply_filters(‘comment_text’, $comment_text); ” to $comment_text = apply_filters(‘comment_text_f’, $comment_text); ” accordingly.
    This also works.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘comments problem for double-bytes languages in 1.0’ is closed to new replies.