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

Made FeedItem_RSS::get_title() more aggresive in finding an article title.

This commit is contained in:
zaikos
2015-01-14 13:28:58 -05:00
parent 50547484b4
commit be60340c29

View File

@@ -51,10 +51,14 @@ class FeedItem_RSS extends FeedItem_Common {
}
function get_title() {
$title = $this->elem->getElementsByTagName("title")->item(0);
$titles = $this->elem->getElementsByTagName("title");
if ($title) {
return trim($title->nodeValue);
foreach ($titles as $title) {
$nv = trim($title->nodeValue);
if (!empty($nv)) {
return $nv;
}
}
}