Browse Source

atom: consider link rel=alternate in feed element for site urls

Andrew Dolgov 9 years ago
parent
commit
e55a5ec601
1 changed files with 5 additions and 0 deletions
  1. 5 0
      classes/feedparser.php

+ 5 - 0
classes/feedparser.php

@@ -142,8 +142,13 @@ class FeedParser {
 				$link = $xpath->query("//atom:feed/atom:link[not(@rel)]")->item(0);
 
 				if (!$link)
+					$link = $xpath->query("//atom:feed/atom:link[@rel='alternate']")->item(0);
+
+				if (!$link)
 					$link = $xpath->query("//atom03:feed/atom03:link[not(@rel)]")->item(0);
 
+				if (!$link)
+					$link = $xpath->query("//atom03:feed/atom03:link[@rel='alternate']")->item(0);
 
 				if ($link && $link->hasAttributes()) {
 					$this->link = $link->getAttribute("href");