Merge pull request #8924 from annando/notice

Fix Notice:  "Undefined index: host"
pull/8934/head
Hypolite Petovan 2020-07-25 07:07:43 -04:00 zatwierdzone przez GitHub
commit 9f9e50947a
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -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'] ?? '/';