summaryrefslogtreecommitdiff
path: root/classes/feeditem
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2016-01-23 01:04:24 +0300
committerAndrew Dolgov <[email protected]>2016-01-23 01:04:24 +0300
commit1383514ad9e7630a3d9627e052780b8fcadab25a (patch)
tree239f21b4ef9806460e1ad7b2a2f128a636daa7ba /classes/feeditem
parenta93047802c459f83c2be9fd6111407a6f7a7aa85 (diff)
parser: use node->c14n() instead of expecting html in nodeValue
Diffstat (limited to 'classes/feeditem')
-rw-r--r--classes/feeditem/atom.php4
-rw-r--r--classes/feeditem/rss.php9
2 files changed, 6 insertions, 7 deletions
diff --git a/classes/feeditem/atom.php b/classes/feeditem/atom.php
index dfac7149f..7990a61c9 100644
--- a/classes/feeditem/atom.php
+++ b/classes/feeditem/atom.php
@@ -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();
}
}
diff --git a/classes/feeditem/rss.php b/classes/feeditem/rss.php
index 27a364b81..95f3acdeb 100644
--- a/classes/feeditem/rss.php
+++ b/classes/feeditem/rss.php
@@ -71,17 +71,16 @@ class FeedItem_RSS extends FeedItem_Common {
$contentB = $this->elem->getElementsByTagName("description")->item(0);
if ($contentA && !$contentB) {
- return $contentA->nodeValue;
+ return $contentA->c14n();
}
-
if ($contentB && !$contentA) {
- return $contentB->nodeValue;
+ return $contentB->c14n();
}
if ($contentA && $contentB) {
return mb_strlen($contentA->nodeValue) > mb_strlen($contentB->nodeValue) ?
- $contentA->nodeValue : $contentB->nodeValue;
+ $contentA->c14n() : $contentB->c14n();
}
}
@@ -89,7 +88,7 @@ class FeedItem_RSS extends FeedItem_Common {
$summary = $this->elem->getElementsByTagName("description")->item(0);
if ($summary) {
- return $summary->nodeValue;
+ return $summary->c14n();
}
}