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 --- CGI.pl | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'CGI.pl') diff --git a/CGI.pl b/CGI.pl index 4d7b34047..165e5216c 100644 --- a/CGI.pl +++ b/CGI.pl @@ -246,28 +246,27 @@ sub CheckIfVotedConfirmed { my ($id, $who) = (@_); PushGlobalSQLState(); SendSQL("SELECT bugs.votes, bugs.bug_status, products.votestoconfirm, " . - " bugs.everconfirmed, NOW() " . + " bugs.everconfirmed " . "FROM bugs, products " . "WHERE bugs.bug_id = $id AND products.id = bugs.product_id"); - my ($votes, $status, $votestoconfirm, $everconfirmed, $now) = (FetchSQLData()); + my ($votes, $status, $votestoconfirm, $everconfirmed) = (FetchSQLData()); my $ret = 0; if ($votes >= $votestoconfirm && $status eq $::unconfirmedstate) { - SendSQL("UPDATE bugs SET bug_status = 'NEW', everconfirmed = 1, " . - "delta_ts = $now WHERE bug_id = $id"); + SendSQL("UPDATE bugs SET bug_status = 'NEW', everconfirmed = 1 " . + "WHERE bug_id = $id"); my $fieldid = GetFieldID("bug_status"); SendSQL("INSERT INTO bugs_activity " . "(bug_id,who,bug_when,fieldid,removed,added) VALUES " . - "($id,$who,$now,$fieldid,'$::unconfirmedstate','NEW')"); + "($id,$who,now(),$fieldid,'$::unconfirmedstate','NEW')"); if (!$everconfirmed) { $fieldid = GetFieldID("everconfirmed"); SendSQL("INSERT INTO bugs_activity " . "(bug_id,who,bug_when,fieldid,removed,added) VALUES " . - "($id,$who,$now,$fieldid,'0','1')"); + "($id,$who,now(),$fieldid,'0','1')"); } AppendComment($id, DBID_to_name($who), - "*** This bug has been confirmed by popular vote. ***", - 0, $now); + "*** This bug has been confirmed by popular vote. ***", 0); $vars->{'type'} = "votes"; $vars->{'id'} = $id; -- cgit v1.2.3-24-g4f1b