diff options
author | 2015-09-11 14:02:15 +0200 | |
---|---|---|
committer | 2015-09-11 14:02:15 +0200 | |
commit | be0849ea2a1695a95b521a00318cfba364777ee9 (patch) | |
tree | 5255fc2818d84ddbd7dc92fbafc83d1b435da8f2 /extensions | |
parent | Merge tag 'release-5.0' into bugstest (diff) | |
parent | Bumped version to 5.0.1 (diff) | |
download | bugzilla-be0849ea2a1695a95b521a00318cfba364777ee9.tar.gz bugzilla-be0849ea2a1695a95b521a00318cfba364777ee9.tar.bz2 bugzilla-be0849ea2a1695a95b521a00318cfba364777ee9.zip |
Merge tag 'release-5.0.1' into bugstest
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/Voting/Extension.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/Voting/Extension.pm b/extensions/Voting/Extension.pm index 8009f16bb..b125933ce 100644 --- a/extensions/Voting/Extension.pm +++ b/extensions/Voting/Extension.pm @@ -610,7 +610,7 @@ sub _update_votes { $sth_getVotes->execute($id); my $v = $sth_getVotes->fetchrow_array || 0; $sth_updateVotes->execute($v, $id); - + $bugs{$id}->{votes} = $v if $bugs{$id}; my $confirmed = _confirm_if_vote_confirmed($bugs{$id} || $id); push (@updated_bugs, $id) if $confirmed; } |