Fixed PARAM_ALPHA
This commit is contained in:
@@ -201,7 +201,6 @@ function clean_param($param, $options) {
|
||||
|
||||
if ($options & PARAM_ALPHA) { // Remove everything not a-z
|
||||
$param = eregi_replace('[^a-zA-Z]', '', $param);
|
||||
$param = strtolower($param);
|
||||
}
|
||||
|
||||
if ($options & PARAM_ALPHANUM) { // Remove everything not a-zA-Z0-9
|
||||
|
||||
Reference in New Issue
Block a user