]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Return false immediately if $url is empty for common_valid_http_url
authorMikael Nordfeldth <mmn@hethane.se>
Sat, 6 May 2017 10:25:27 +0000 (12:25 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Sat, 6 May 2017 10:25:27 +0000 (12:25 +0200)
lib/util.php

index aa0d5bfe7663b5fda8b90e483de3efb6a1108313..e5cc78068860a00513429e970bda406356f0fbe9 100644 (file)
@@ -1906,6 +1906,10 @@ function common_log_objstring(&$object)
 
 function common_valid_http_url($url, $secure=false)
 {
+    if (empty($url)) {
+        return false;
+    }
+
     // If $secure is true, only allow https URLs to pass
     // (if false, we use '?' in 'https?' to say the 's' is optional)
     $regex = $secure ? '/^https$/' : '/^https?$/';