mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-11-28 17:41:38 +01:00
atom: consider link rel=alternate in feed element for site urls
This commit is contained in:
parent
6d204cd131
commit
e55a5ec601
@ -141,9 +141,14 @@ 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");
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user