atom: fix rel=alternate links

master
Andrew Dolgov 12 years ago
parent 602fe53496
commit 72c29b65d4

@ -22,7 +22,8 @@ class FeedItem_Atom extends FeedItem_Common {
$links = $this->elem->getElementsByTagName("link"); $links = $this->elem->getElementsByTagName("link");
foreach ($links as $link) { foreach ($links as $link) {
if ($link && $link->hasAttribute("href") && !$link->hasAttribute("rel")) { if ($link && $link->hasAttribute("href") && (!$link->hasAttribute("rel")
|| $link->getAttribute("rel") == "alternate")) {
return $link->getAttribute("href"); return $link->getAttribute("href");
} }
} }

Loading…
Cancel
Save