• For some reason, I couldn’t validate my feeds with the FeedValidator because a single quote character was being encoded the ′ entity character. Seems like that would be fine, but for some reason, it wouldn’t validate. Also, Firefox couldn’t display my RSS2 feed properly either because of the ′ entity character. So, I made the following changes which fixed the problem. By the way, I made this change in WP 1.2.
    File: /wp-includes/functions-formatting.php
    ———————————————
    Old:
    Line 25: $curl = preg_replace('/(\d+)"/', '$1″', $curl);
    Line 26: $curl = preg_replace(“/(\d+)’/”, ‘$1′’, $curl);
    New:
    Line 25:
    $curl = preg_replace(‘/(\d+)”/’, ‘$1″’, $curl);
    Line 26:
    $curl = preg_replace(“/(\d+)’/”, ‘$1′’, $curl);`

Viewing 1 replies (of 1 total)
  • I have installed WP 1.5 this week and I am encontering problems with the apostrophe in my RSS feed.

    More specically, the character &8217; is translated by & amp;8217;., causing an evident problem when attempting to read the file.

    Could someone tell me how I can fix this as I have been loosing my mind digging (my programming knowledge is limited) to no avail? The only solution I can see is to remove the filter for the character & but I don’t know how.

    I thank you very much for your help.

Viewing 1 replies (of 1 total)
  • The topic ‘′ entity code prevents RSS and Atom feeds fr’ is closed to new replies.