feedparser: properly handle nodeValue of rss channel link element (closes #692)
This commit is contained in:
parent
610fe11535
commit
1874c8d6df
1 changed files with 5 additions and 2 deletions
|
@ -114,8 +114,11 @@ class FeedParser {
|
||||||
|
|
||||||
$link = $xpath->query("//channel/link")->item(0);
|
$link = $xpath->query("//channel/link")->item(0);
|
||||||
|
|
||||||
if ($link && $link->hasAttributes()) {
|
if ($link) {
|
||||||
$this->link = $link->getAttribute("href");
|
if ($link->getAttribute("href"))
|
||||||
|
$this->link = $link->getAttribute("href");
|
||||||
|
else if ($link->nodeValue)
|
||||||
|
$this->link = $link->nodeValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
$articles = $xpath->query("//channel/item");
|
$articles = $xpath->query("//channel/item");
|
||||||
|
|
Loading…
Reference in a new issue