1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-11 02:59:14 +00:00

better correction of wrong ampersands in Magpie

This commit is contained in:
Andrew Dolgov
2007-05-16 07:25:56 +01:00
parent 45eb71a776
commit 59d6a586fd

View File

@@ -122,7 +122,7 @@ class MagpieRSS {
xml_set_element_handler($this->parser,
'feed_start_element', 'feed_end_element' );
$source = preg_replace("/&(?!amp;)/","&",$source);
$source = preg_replace("/&(?![^ ][^ ]+;)/","&",$source);
xml_set_character_data_handler( $this->parser, 'feed_cdata' );