summaryrefslogtreecommitdiffstats
path: root/userprefs.cgi
diff options
context:
space:
mode:
authorSimon Green <mail@simon.green>2015-08-23 07:33:45 +0200
committerSimon Green <mail@simon.green>2015-08-23 07:33:45 +0200
commit19d20ef6c3b76145e2ea0ebf96a7519eda3bf64d (patch)
treeb12118c4f37e76ffee72e0053619d47ff35b1885 /userprefs.cgi
parentd3a74a9278457522a6361492fe49e9f984b04a5e (diff)
downloadbugzilla-19d20ef6c3b76145e2ea0ebf96a7519eda3bf64d.tar.gz
bugzilla-19d20ef6c3b76145e2ea0ebf96a7519eda3bf64d.tar.xz
Bug 670669 - Changing the e-mail address under account prefs does not require current password if can_change_password is false
r=dkl, a=simon
Diffstat (limited to 'userprefs.cgi')
-rwxr-xr-xuserprefs.cgi27
1 files changed, 11 insertions, 16 deletions
diff --git a/userprefs.cgi b/userprefs.cgi
index 71b274c01..56157dfcd 100755
--- a/userprefs.cgi
+++ b/userprefs.cgi
@@ -74,29 +74,24 @@ sub SaveAccount {
my $user = Bugzilla->user;
my $oldpassword = $cgi->param('old_password');
+ my $verified_password;
my $pwd1 = $cgi->param('new_password1');
my $pwd2 = $cgi->param('new_password2');
my $new_login_name = trim($cgi->param('new_login_name'));
if ($user->authorizer->can_change_password
- && ($oldpassword ne "" || $pwd1 ne "" || $pwd2 ne ""))
+ && ($pwd1 ne "" || $pwd2 ne ""))
{
- my $oldcryptedpwd = $user->cryptpassword;
- $oldcryptedpwd || ThrowCodeError("unable_to_retrieve_password");
+ $user->check_current_password($oldpassword);
+ $verified_password = 1;
- if (bz_crypt($oldpassword, $oldcryptedpwd) ne $oldcryptedpwd) {
- ThrowUserError("old_password_incorrect");
- }
-
- if ($pwd1 ne "" || $pwd2 ne "") {
- $pwd1 || ThrowUserError("new_password_missing");
- validate_password($pwd1, $pwd2);
+ $pwd1 || ThrowUserError("new_password_missing");
+ validate_password($pwd1, $pwd2);
- if ($oldpassword ne $pwd1) {
- $user->set_password($pwd1);
- # Invalidate all logins except for the current one
- Bugzilla->logout(LOGOUT_KEEP_CURRENT);
- }
+ if ($oldpassword ne $pwd1) {
+ $user->set_password($pwd1);
+ # Invalidate all logins except for the current one
+ Bugzilla->logout(LOGOUT_KEEP_CURRENT);
}
}
@@ -105,7 +100,7 @@ sub SaveAccount {
&& $new_login_name)
{
if ($user->login ne $new_login_name) {
- $oldpassword || ThrowUserError("old_password_required");
+ $verified_password || $user->check_current_password($oldpassword);
# Block multiple email changes for the same user.
if (Bugzilla::Token::HasEmailChangeToken($user->id)) {