diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2014-10-01 12:07:34 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2014-10-01 12:07:34 +0200 |
commit | 0b4a2599b1ba5394507e2e22401ec3e13cdf5d3f (patch) | |
tree | 9c5b8153b3a1745b9f3b5fcbcdc611848c3def47 /token.cgi | |
parent | Bug 1061247 - Successfully using a password change token should invalidate al... (diff) | |
download | bugzilla-0b4a2599b1ba5394507e2e22401ec3e13cdf5d3f.tar.gz bugzilla-0b4a2599b1ba5394507e2e22401ec3e13cdf5d3f.tar.bz2 bugzilla-0b4a2599b1ba5394507e2e22401ec3e13cdf5d3f.zip |
Fix bustage due to bug 1061247
Diffstat (limited to 'token.cgi')
-rwxr-xr-x | token.cgi | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -163,6 +163,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')) |