From 206326c219a08b91a793cec9f1798f0f69f7950d Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 19 Jan 2015 21:40:20 +0300 Subject: feedparser: xpath doesn't properly query for title element if there's a default namespace so let's add a separate ugly hack for rdf:RDF feeds, thanks for that xml dipshits --- classes/feeditem/rss.php | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'classes/feeditem') diff --git a/classes/feeditem/rss.php b/classes/feeditem/rss.php index 7b4c4fb0c..27a364b81 100644 --- a/classes/feeditem/rss.php +++ b/classes/feeditem/rss.php @@ -56,6 +56,14 @@ class FeedItem_RSS extends FeedItem_Common { if ($title) { return trim($title->nodeValue); } + + // if the document has a default namespace then querying for + // title would fail because of reasons so let's try the old way + $title = $this->elem->getElementsByTagName("title")->item(0); + + if ($title) { + return trim($title->nodeValue); + } } function get_content() { -- cgit v1.2.3