- made username check case insensitive.
parent
aa256d3603
commit
c9fc36fcdc
|
@ -171,7 +171,7 @@ function user_validate_name($name) {
|
|||
if (ereg(" \$", $name)) return t("The Username cannot end with a space.");
|
||||
if (ereg(" ", $name)) return t("The Username cannot contain multiple spaces in a row.");
|
||||
// if (ereg("[^a-zA-Z0-9@-@]", $name)) return t("The Username contains an illegal character.");
|
||||
if (!ereg('^[a-z0-9]+(@[a-z0-9]+)?$', $name)) return t("The name contains an illegal character.");
|
||||
if (!eregi('^[a-z0-9]+(@[a-z0-9]+)?$', $name)) return t("The name contains an illegal character.");
|
||||
if (strlen($name) > 56) return t("The Username '$name' is too long: it must be less than 56 characters.");
|
||||
}
|
||||
|
||||
|
|
|
@ -171,7 +171,7 @@ function user_validate_name($name) {
|
|||
if (ereg(" \$", $name)) return t("The Username cannot end with a space.");
|
||||
if (ereg(" ", $name)) return t("The Username cannot contain multiple spaces in a row.");
|
||||
// if (ereg("[^a-zA-Z0-9@-@]", $name)) return t("The Username contains an illegal character.");
|
||||
if (!ereg('^[a-z0-9]+(@[a-z0-9]+)?$', $name)) return t("The name contains an illegal character.");
|
||||
if (!eregi('^[a-z0-9]+(@[a-z0-9]+)?$', $name)) return t("The name contains an illegal character.");
|
||||
if (strlen($name) > 56) return t("The Username '$name' is too long: it must be less than 56 characters.");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue