diff options
author | 2009-07-01 11:04:23 +0000 | |
---|---|---|
committer | 2009-07-01 11:04:23 +0000 | |
commit | 5e125d3a4a15eda76d4a2d7c337b8747a8a75ad6 (patch) | |
tree | 15d9b3ddb062e5c8517af1d9be401884d9b17141 /votes.cgi | |
parent | Bug 499103 - page_requires_login check uses undefined variable (diff) | |
download | bugzilla-5e125d3a4a15eda76d4a2d7c337b8747a8a75ad6.tar.gz bugzilla-5e125d3a4a15eda76d4a2d7c337b8747a8a75ad6.tar.bz2 bugzilla-5e125d3a4a15eda76d4a2d7c337b8747a8a75ad6.zip |
Bug 500900: Confirming bugs requires NEW state to exist - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
Diffstat (limited to 'votes.cgi')
-rwxr-xr-x | votes.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -342,7 +342,7 @@ sub record_votes { my $v = $sth_getVotes->fetchrow_array || 0; $sth_updateVotes->execute($v, $id); - my $confirmed = CheckIfVotedConfirmed($id, $who); + my $confirmed = CheckIfVotedConfirmed($id); push (@updated_bugs, $id) if $confirmed; } $dbh->bz_commit_transaction(); |