From: lpsolit%gmail.com <> Date: Sat, 30 Dec 2006 06:35:57 +0000 (+0000) Subject: Bug 365264: The modification date of flags is erased on flag modification - Patch... X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=26ebcdcbc766ccbe125fdfb6a5e57399566da191;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 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);