get_favicon_url: only check base elements with href attribute
This commit is contained in:
parent
241f69e4db
commit
701c5a7ee4
|
@ -575,7 +575,7 @@
|
||||||
$doc->loadHTML($html);
|
$doc->loadHTML($html);
|
||||||
$xpath = new DOMXPath($doc);
|
$xpath = new DOMXPath($doc);
|
||||||
|
|
||||||
$base = $xpath->query('/html/head/base');
|
$base = $xpath->query('/html/head/base[@href]');
|
||||||
foreach ($base as $b) {
|
foreach ($base as $b) {
|
||||||
$url = rewrite_relative_url($url, $b->getAttribute("href"));
|
$url = rewrite_relative_url($url, $b->getAttribute("href"));
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue