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

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

This commit is contained in:
Andrew Dolgov
2015-01-19 21:40:20 +03:00
parent 94238b143a
commit 206326c219

View File

@@ -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() {