Updated regex for URL, because it wouldn't accept '=' or '?' characters in the URL

This commit is contained in:
2023-10-27 19:05:29 -05:00
parent 84e5994c18
commit 9638ae3af5
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ if ($is_geo == 1) {
$longitude = doubleval($longitude);
}
$matches = preg_match('/^http(s)*:\\/\\/[a-zA-Z0-9\\-]+(\\.[a-zA-Z0-9\\-]+)+[\\/_#a-zA-Z0-9\\-]*$/',$url);
$matches = preg_match('/^http(s)*:\\/\\/[a-zA-Z0-9\\-]+(\\.[a-zA-Z0-9\\-]+)+[\\/_#a-zA-Z0-9=?\\-]*$/',$url);
if (($matches == 0) || ($matches == false)) {
printf("The URL entered was invalid. Please try again.");
return;