Fixed PARAM_ALPHA

This commit is contained in:
moodler
2005-02-07 02:13:18 +00:00
parent 333f44dab0
commit 106137d877
-1
View File
@@ -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