1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 13:55:55 +00:00

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

This reverts commit 1383514ad9.
This commit is contained in:
Andrew Dolgov
2016-01-23 01:24:13 +03:00
parent 1383514ad9
commit d2bb392bae
2 changed files with 7 additions and 6 deletions

View File

@@ -75,7 +75,7 @@ class FeedItem_Atom extends FeedItem_Common {
}
}
return $content->c14n();
return $content->nodeValue;
}
}
@@ -95,7 +95,7 @@ class FeedItem_Atom extends FeedItem_Common {
}
}
return $content->c14n();
return $content->nodeValue;
}
}