aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2009-07-01 11:02:20 +0000
committerlpsolit%gmail.com <>2009-07-01 11:02:20 +0000
commita0cb5b08f1d4c9218d64d8e0471ce0fb5578939c (patch)
treeaad1c8bdc746ec0631d3c929ae92b29a494d6ceb /votes.cgi
parentBug 500350: [Oracle] Use of uninitialized value in pattern match (m//) at Bug... (diff)
downloadbugzilla-a0cb5b08f1d4c9218d64d8e0471ce0fb5578939c.tar.gz
bugzilla-a0cb5b08f1d4c9218d64d8e0471ce0fb5578939c.tar.bz2
bugzilla-a0cb5b08f1d4c9218d64d8e0471ce0fb5578939c.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-xvotes.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/votes.cgi b/votes.cgi
index 3e33d8fa9..1c72431c4 100755
--- a/votes.cgi
+++ b/votes.cgi
@@ -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();