From 344149d0e639267412ca0e2ccd95c2872e9350d9 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Fri, 14 Apr 2006 23:50:39 +0000 Subject: Bug 322285: Cancelling a flag should remove it completely from the DB - Patch by Frédéric Buclin r/a=myk MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- importxml.pl | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'importxml.pl') diff --git a/importxml.pl b/importxml.pl index 494a00eca..47f886c1c 100755 --- a/importxml.pl +++ b/importxml.pl @@ -304,14 +304,12 @@ sub flag_handler { return $err; } - my ($fid) = $dbh->selectrow_array("SELECT MAX(id) FROM flags") || 0; $dbh->do("INSERT INTO flags - (id, type_id, status, bug_id, attach_id, creation_date, - setter_id, requestee_id, is_active) - VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)", undef, - ++$fid, $ftypeid, $status, $bugid, $attachid, $timestamp, - $setter_id, $requestee_id, 1 - ); + (type_id, status, bug_id, attach_id, creation_date, + setter_id, requestee_id) + VALUES (?, ?, ?, ?, ?, ?, ?)", undef, + ($ftypeid, $status, $bugid, $attachid, $timestamp, + $setter_id, $requestee_id)); } else { $err = "Dropping unknown $type flag: $name\n"; -- cgit v1.2.3-24-g4f1b