Prevent a fatal error for an empty parameter in "unparseURL"

This commit is contained in:
Michael Vogel 2019-08-23 07:19:08 +02:00
parent d850c14f42
commit 74d93269da
1 changed files with 4 additions and 0 deletions

View File

@ -419,6 +419,10 @@ class HTML
$link = $matches[0];
$url = $matches[1];
if (empty($url) || empty(parse_url($url))) {
return $matches[0];
}
$parts = array_merge($base, parse_url($url));
$url2 = Network::unparseURL($parts);