Merge pull request #8924 from annando/notice

Fix Notice:  "Undefined index: host"
This commit is contained in:
Hypolite Petovan
2020-07-25 07:07:43 -04:00
committed by GitHub

View File

@@ -1784,6 +1784,9 @@ class Probe
$base = $xpath->evaluate('string(/html/head/base/@href)') ?: $base;
$baseParts = parse_url($base);
if (empty($baseParts['host'])) {
return $href;
}
// Naked domain case (scheme://basehost)
$path = $baseParts['path'] ?? '/';