From d9e238bc897b7614a81784dbebc69b9a155c9539 Mon Sep 17 00:00:00 2001 From: "justdave%bugzilla.org" <> Date: Sun, 30 Jan 2005 12:22:27 +0000 Subject: Backing out the checking from bug 257315 until it gets corrected. It prevents new bugs from being filed. a=justdave --- votes.cgi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'votes.cgi') diff --git a/votes.cgi b/votes.cgi index e209ba338..49ac0cb2a 100755 --- a/votes.cgi +++ b/votes.cgi @@ -343,7 +343,8 @@ sub record_votes { foreach my $id (keys %affected) { SendSQL("SELECT sum(vote_count) FROM votes WHERE bug_id = $id"); my $v = FetchOneColumn() || 0; - SendSQL("UPDATE bugs SET votes = $v WHERE bug_id = $id"); + SendSQL("UPDATE bugs SET votes = $v, delta_ts=delta_ts + WHERE bug_id = $id"); my $confirmed = CheckIfVotedConfirmed($id, $who); $vars->{'header_done'} = 1 if $confirmed; } -- cgit v1.2.3-24-g4f1b