From 26ebcdcbc766ccbe125fdfb6a5e57399566da191 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Sat, 30 Dec 2006 06:35:57 +0000 Subject: [PATCH] =?utf8?q?Bug=20365264:=20The=20modification=20date=20of?= =?utf8?q?=20flags=20is=20erased=20on=20flag=20modification=20-=20Patch=20?= =?utf8?q?by=20Fr=C3=83=C2=A9d=C3=83=C2=A9ric=20Buclin=20=20r/a=3Djustdave?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- Bugzilla/Flag.pm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Bugzilla/Flag.pm b/Bugzilla/Flag.pm index 1b00676742..8f97383276 100644 --- a/Bugzilla/Flag.pm +++ b/Bugzilla/Flag.pm @@ -399,10 +399,6 @@ sub modify { my ($data, $timestamp) = @_; - # Use the date/time we were given if possible (allowing calling code - # to synchronize the comment's timestamp with those of other records). - $timestamp = ($timestamp ? &::SqlQuote($timestamp) : "NOW()"); - # Extract a list of flags from the form data. my @ids = map(/^flag-(\d+)$/ ? $1 : (), keys %$data); -- 2.47.3