From: Andrew Dolgov Date: Mon, 19 Jan 2015 18:40:20 +0000 (+0300) Subject: feedparser: xpath doesn't properly query for title element if there's a default names... X-Git-Tag: 16.3~373 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=206326c219a08b91a793cec9f1798f0f69f7950d;p=tt-rss.git 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 --- diff --git a/classes/feeditem/rss.php b/classes/feeditem/rss.php index 7b4c4fb0..27a364b8 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() {