1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-10 16:01:33 +00:00

parser: use node->c14n() instead of expecting html in nodeValue

This commit is contained in:
Andrew Dolgov
2016-01-23 01:04:24 +03:00
parent a93047802c
commit 1383514ad9
2 changed files with 6 additions and 7 deletions
+2 -2
View File
@@ -75,7 +75,7 @@ class FeedItem_Atom extends FeedItem_Common {
}
}
return $content->nodeValue;
return $content->c14n();
}
}
@@ -95,7 +95,7 @@ class FeedItem_Atom extends FeedItem_Common {
}
}
return $content->nodeValue;
return $content->c14n();
}
}