fix get_links() for RSS
This commit is contained in:
parent
b9eee80e08
commit
3c8060aca0
|
@ -132,8 +132,10 @@ class FeedParser {
|
||||||
break;
|
break;
|
||||||
case $this::FEED_RSS:
|
case $this::FEED_RSS:
|
||||||
$links = $this->xpath->query("//channel/link");
|
$links = $this->xpath->query("//channel/link");
|
||||||
if (!$rel || $link->hasAttribute('rel') && $link->getAttribute('rel') == $rel) {
|
foreach ($links as $link) {
|
||||||
array_push($rv, $link->getAttribute('href'));
|
if (!$rel || $link->hasAttribute('rel') && $link->getAttribute('rel') == $rel) {
|
||||||
|
array_push($rv, $link->getAttribute('href'));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue