Merge pull request #7553 from annando/fatal
Prevent a fatal error for an empty parameter in "unparseURL"
This commit is contained in:
@@ -419,6 +419,10 @@ class HTML
|
|||||||
$link = $matches[0];
|
$link = $matches[0];
|
||||||
$url = $matches[1];
|
$url = $matches[1];
|
||||||
|
|
||||||
|
if (empty($url) || empty(parse_url($url))) {
|
||||||
|
return $matches[0];
|
||||||
|
}
|
||||||
|
|
||||||
$parts = array_merge($base, parse_url($url));
|
$parts = array_merge($base, parse_url($url));
|
||||||
$url2 = Network::unparseURL($parts);
|
$url2 = Network::unparseURL($parts);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user