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:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user