Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter wereldkeuken

    (@wereldkeuken)

    A quick hack in wp-comments-post.php which solves the problem:

    $comment = balanceTags($comment, 1);
    $comment = format_to_post($comment);
    $comment = apply_filters(‘post_comment_text’, $comment);
    //
    // add htmlentities (conversion of all special characters to html-entities)
    //
    $comment = htmlentities($comment);

    Herman — blog.wereldkeuken.be

    Thread Starter wereldkeuken

    (@wereldkeuken)

    There is the same problem for posts …

    Thread Starter wereldkeuken

    (@wereldkeuken)

    Solution in my case: switching the encoding from utf-8 to iso-8859-1.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Problems with comments-feed’ is closed to new replies.