Replace Function strtoAZaz09() with toAlphanumeric()

This commit is contained in:
johnnyq
2026-07-14 17:30:13 -04:00
parent 8de3cd300d
commit 31cc3f3ac3
3 changed files with 5 additions and 5 deletions

View File

@@ -51,7 +51,7 @@ function cleanInput($input) {
return $input;
}
function strtoAZaz09($string)
function toAlphanumeric($string)
{
// Gets rid of non-alphanumerics
return preg_replace('/[^A-Za-z0-9_-]/', '', $string);