feedparser: properly handle nodeValue of rss channel link element (closes #692)

master
Andrew Dolgov 11 years ago
parent 610fe11535
commit 1874c8d6df

@ -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");

Loading…
Cancel
Save