Merge branch 'relative_html_base' of wn/tt-rss into master

This commit is contained in:
fox 2017-10-02 15:52:17 +00:00 committed by Gogs
commit 3b8d9bc6ff

View file

@ -575,9 +575,9 @@
$doc->loadHTML($html);
$xpath = new DOMXPath($doc);
$base = $xpath->query('/html/head/base');
$base = $xpath->query('/html/head/base[@href]');
foreach ($base as $b) {
$url = $b->getAttribute("href");
$url = rewrite_relative_url($url, $b->getAttribute("href"));
break;
}