Commit 8e32409b authored by timeless%mozdev.org's avatar timeless%mozdev.org

Bug 238651 (a&b) Include the login name (in <code>) for "account_inexistent" error

r=lpsolit a=lpsolit
parent efe725f6
......@@ -68,9 +68,10 @@
that login name.
[% END %]
[% ELSIF error == "account_inexistent" %]
[% ELSIF error == "account_does_not_exist" %]
[% title = "Account Does Not Exist" %]
There is no [% terms.Bugzilla %] account with that login name.
<code>[% email FILTER html %]</code> is not a valid [% terms.Bugzilla %]
account.
[% ELSIF error == "alias_has_comma_or_space" %]
[% title = "Invalid Characters In Alias" %]
......
......@@ -118,7 +118,7 @@ if ( $::action eq 'reqpw' ) {
my ($user_id) = $dbh->selectrow_array('SELECT userid FROM profiles WHERE ' .
$dbh->sql_istrcmp('login_name', '?'),
undef, $login_name);
$user_id || ThrowUserError("account_inexistent");
$user_id || ThrowUserError("account_does_not_exist", {'email' => $login_name});
}
# If the user is changing their password, make sure they submitted a new
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment