]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 365264: The modification date of flags is erased on flag modification - Patch...
authorlpsolit%gmail.com <>
Sat, 30 Dec 2006 06:35:57 +0000 (06:35 +0000)
committerlpsolit%gmail.com <>
Sat, 30 Dec 2006 06:35:57 +0000 (06:35 +0000)
Bugzilla/Flag.pm

index 1b00676742ccbfa3ac38bd5c3d174dca52e3f347..8f97383276d11e7b08f8adb1a9c0bb20c3528fd6 100644 (file)
@@ -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);