Bug 199813 - Make all users of ThrowUserError pass $vars in explicitly.
r=gerv a=justdave git-svn-id: svn://10.0.0.236/trunk@140585 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -231,9 +231,9 @@ sub changeEmail {
|
||||
# The new email address should be available as this was
|
||||
# confirmed initially so cancel token if it is not still available
|
||||
if (! ValidateNewUser($new_email,$old_email)) {
|
||||
$vars->{'email'} = $new_email;
|
||||
$vars->{'email'} = $new_email; # Needed for Token::Cancel's mail
|
||||
Token::Cancel($::token,"account_exists");
|
||||
ThrowUserError("account_exists");
|
||||
ThrowUserError("account_exists", { email => $new_email } );
|
||||
}
|
||||
|
||||
# Update the user's login name in the profiles table and delete the token
|
||||
|
||||
Reference in New Issue
Block a user