diff options
author | timeless%mozdev.org <> | 2007-07-24 04:52:49 +0200 |
---|---|---|
committer | timeless%mozdev.org <> | 2007-07-24 04:52:49 +0200 |
commit | a1d40e5a33fe1cae729b5c7b7e77a54b4ab17271 (patch) | |
tree | c6be8712bea200808f4cec70f13e5e00b0e2d4f1 /createaccount.cgi | |
parent | 4db8f6e2cfcaad4cad3b33e85659e416395eba67 (diff) | |
download | bugzilla-a1d40e5a33fe1cae729b5c7b7e77a54b4ab17271.tar.gz bugzilla-a1d40e5a33fe1cae729b5c7b7e77a54b4ab17271.tar.xz |
Bug 254758 creating an account that doesn't match the create email regexp should not say "New accounts must be created by an administrator."
r=lpsolit a=lpsolit
Diffstat (limited to 'createaccount.cgi')
-rwxr-xr-x | createaccount.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/createaccount.cgi b/createaccount.cgi index 1f372fe7e..1ec7ec31d 100755 --- a/createaccount.cgi +++ b/createaccount.cgi @@ -64,7 +64,7 @@ if (defined($login)) { $vars->{'login'} = $login; if ($login !~ /$createexp/) { - ThrowUserError("account_creation_disabled"); + ThrowUserError("account_creation_restricted"); } # Create and send a token for this new account. |