From d2bb392bae5d3de97e1e99bc810524e149c5c199 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sat, 23 Jan 2016 01:24:13 +0300 Subject: [PATCH] Revert "parser: use node->c14n() instead of expecting html in nodeValue" This reverts commit 1383514ad9e7630a3d9627e052780b8fcadab25a. --- classes/feeditem/atom.php | 4 ++-- classes/feeditem/rss.php | 9 +++++---- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/classes/feeditem/atom.php b/classes/feeditem/atom.php index 7990a61c..dfac7149 100644 --- a/classes/feeditem/atom.php +++ b/classes/feeditem/atom.php @@ -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; } } diff --git a/classes/feeditem/rss.php b/classes/feeditem/rss.php index 95f3acde..27a364b8 100644 --- a/classes/feeditem/rss.php +++ b/classes/feeditem/rss.php @@ -71,16 +71,17 @@ class FeedItem_RSS extends FeedItem_Common { $contentB = $this->elem->getElementsByTagName("description")->item(0); if ($contentA && !$contentB) { - return $contentA->c14n(); + return $contentA->nodeValue; } + if ($contentB && !$contentA) { - return $contentB->c14n(); + return $contentB->nodeValue; } if ($contentA && $contentB) { return mb_strlen($contentA->nodeValue) > mb_strlen($contentB->nodeValue) ? - $contentA->c14n() : $contentB->c14n(); + $contentA->nodeValue : $contentB->nodeValue; } } @@ -88,7 +89,7 @@ class FeedItem_RSS extends FeedItem_Common { $summary = $this->elem->getElementsByTagName("description")->item(0); if ($summary) { - return $summary->c14n(); + return $summary->nodeValue; } } -- 2.39.2