diff options
author | 2014-10-01 12:05:28 +0200 | |
---|---|---|
committer | 2014-10-01 12:05:28 +0200 | |
commit | f7f98a3c67b31d39ce34cca6650f624cba8a5e45 (patch) | |
tree | e354874a4cc2972179ea438ebf5f26963a35f373 | |
parent | Bug 1061247 - Successfully using a password change token should invalidate al... (diff) | |
download | bugzilla-f7f98a3c67b31d39ce34cca6650f624cba8a5e45.tar.gz bugzilla-f7f98a3c67b31d39ce34cca6650f624cba8a5e45.tar.bz2 bugzilla-f7f98a3c67b31d39ce34cca6650f624cba8a5e45.zip |
Fix bustage due to bug 1061247
-rwxr-xr-x | token.cgi | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -167,6 +167,7 @@ sub cancelChangePassword { # password and that the new password is valid. sub changePassword { my ($user_id, $token) = @_; + my $dbh = Bugzilla->dbh; my $password = $cgi->param('password'); (defined $password && defined $cgi->param('matchpassword')) |