From: lpsolit%gmail.com <> Date: Sat, 30 Dec 2006 06:34:09 +0000 (+0000) Subject: Bug 365264: The modification date of flags is erased on flag modification - Patch... X-Git-Tag: bugzilla-2.20.4~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=658b8746fe0c7e93630d993aa27fec8ca9c3fe4b;p=thirdparty%2Fbugzilla.git Bug 365264: The modification date of flags is erased on flag modification - Patch by Frédéric Buclin r/a=justdave --- diff --git a/Bugzilla/Flag.pm b/Bugzilla/Flag.pm index 4ca68e6977..2f8cd194a4 100644 --- a/Bugzilla/Flag.pm +++ b/Bugzilla/Flag.pm @@ -592,10 +592,6 @@ attachment.cgi midairs. See bug 223878 for details. sub modify { my ($cgi, $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 : (), $cgi->param());