Modified the Regex to accept additional (valid) characters

This commit is contained in:
2023-06-28 01:39:35 -05:00
parent 3b59de608a
commit a7ba5aa8e1
2 changed files with 3 additions and 2 deletions

View File

@@ -50,7 +50,7 @@ if ($is_geo == 1) {
$longitude = doubleval($longitude);
}
$matches = preg_match('/^http(s)*:\\/\\/[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;