mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-12-16 10:21:00 +01:00
atom: only perform xml:base based rewriting if base element exists (closes #761)
This commit is contained in:
parent
891d033c97
commit
491ef97072
@ -42,7 +42,11 @@ class FeedItem_Atom extends FeedItem_Common {
|
|||||||
|| $link->getAttribute("rel") == "standout")) {
|
|| $link->getAttribute("rel") == "standout")) {
|
||||||
$base = $this->xpath->evaluate("string(ancestor-or-self::*[@xml:base][1]/@xml:base)", $link);
|
$base = $this->xpath->evaluate("string(ancestor-or-self::*[@xml:base][1]/@xml:base)", $link);
|
||||||
|
|
||||||
return rewrite_relative_url($base, $link->getAttribute("href"));
|
if ($base)
|
||||||
|
return rewrite_relative_url($base, $link->getAttribute("href"));
|
||||||
|
else
|
||||||
|
return $link->getAttribute("href");
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user