Bug 622513 - Email-related regexp checking should be case-insensitive. a=mkanat.

git-svn-id: svn://10.0.0.236/trunk@262017 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mkanat%bugzilla.org
2011-03-08 16:17:04 +00:00
parent 4002185540
commit bd9b5b9606
4 changed files with 4 additions and 4 deletions

View File

@@ -95,7 +95,7 @@ sub offer_account_by_email {
if (!$createexp) {
ThrowUserError("account_creation_disabled");
}
elsif ($email !~ /$createexp/) {
elsif ($email !~ /$createexp/i) {
ThrowUserError("account_creation_restricted");
}