mirror of
https://github.com/friendica/friendica
synced 2024-11-13 01:02:53 +00:00
Fix a notice when the path is empty
This commit is contained in:
parent
934f69a426
commit
fec5f2c217
1 changed files with 19 additions and 17 deletions
|
@ -1801,6 +1801,7 @@ class Probe
|
|||
|
||||
$hrefParts = parse_url($href);
|
||||
|
||||
if (!empty($hrefParts['path'])) {
|
||||
// Root path case (/path) including relative scheme case (//host/path)
|
||||
if ($hrefParts['path'] && $hrefParts['path'][0] == '/') {
|
||||
$path = $hrefParts['path'];
|
||||
|
@ -1822,6 +1823,7 @@ class Probe
|
|||
|
||||
$path = '/' . implode('/', $absolutes);
|
||||
}
|
||||
}
|
||||
|
||||
// Relative scheme case (//host/path)
|
||||
$baseParts['host'] = $hrefParts['host'] ?? $baseParts['host'];
|
||||
|
|
Loading…
Reference in a new issue