diff --git a/classes/feedparser.php b/classes/feedparser.php index 6b84e59c7..a4fb348a2 100644 --- a/classes/feedparser.php +++ b/classes/feedparser.php @@ -114,8 +114,11 @@ class FeedParser { $link = $xpath->query("//channel/link")->item(0); - if ($link && $link->hasAttributes()) { - $this->link = $link->getAttribute("href"); + if ($link) { + if ($link->getAttribute("href")) + $this->link = $link->getAttribute("href"); + else if ($link->nodeValue) + $this->link = $link->nodeValue; } $articles = $xpath->query("//channel/item");