summaryrefslogtreecommitdiffstats
path: root/userprefs.cgi
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2011-08-17 14:54:44 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2011-08-17 14:54:44 +0200
commitdd7eacbef2571efe55e5b18d80e93837dc6619d1 (patch)
treeaed205f244904a100352db4c82d65c78190b5ca2 /userprefs.cgi
parent0df89d6d2a4c50dbadd2e579e53bb5e685b923f2 (diff)
downloadbugzilla-dd7eacbef2571efe55e5b18d80e93837dc6619d1.tar.gz
bugzilla-dd7eacbef2571efe55e5b18d80e93837dc6619d1.tar.xz
Bug 677522: IssueEmailChangeToken() should get the old login name from the user object
r=timello a=LpSolit
Diffstat (limited to 'userprefs.cgi')
-rwxr-xr-xuserprefs.cgi7
1 files changed, 2 insertions, 5 deletions
diff --git a/userprefs.cgi b/userprefs.cgi
index f411326a2..94fe1def2 100755
--- a/userprefs.cgi
+++ b/userprefs.cgi
@@ -84,8 +84,6 @@ sub SaveAccount {
my $oldpassword = $cgi->param('old_password');
my $pwd1 = $cgi->param('new_password1');
my $pwd2 = $cgi->param('new_password2');
-
- my $old_login_name = $user->login;
my $new_login_name = trim($cgi->param('new_login_name'));
if ($user->authorizer->can_change_password
@@ -119,7 +117,7 @@ sub SaveAccount {
&& Bugzilla->params->{"allowemailchange"}
&& $new_login_name)
{
- if ($old_login_name ne $new_login_name) {
+ if ($user->login ne $new_login_name) {
$oldpassword || ThrowUserError("old_password_required");
# Block multiple email changes for the same user.
@@ -133,8 +131,7 @@ sub SaveAccount {
is_available_username($new_login_name)
|| ThrowUserError("account_exists", {email => $new_login_name});
- Bugzilla::Token::IssueEmailChangeToken($user, $old_login_name,
- $new_login_name);
+ Bugzilla::Token::IssueEmailChangeToken($user, $new_login_name);
$vars->{'email_changes_saved'} = 1;
}