diff options
author | lpsolit%gmail.com <> | 2006-12-30 06:34:09 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-12-30 06:34:09 +0000 |
commit | 658b8746fe0c7e93630d993aa27fec8ca9c3fe4b (patch) | |
tree | 21c20b83a528ae0a06a34d87fb9843572dbfc827 | |
parent | Bug 355302: Documentation for the "clone bug" feature - Patch by victory(_RSZ... (diff) | |
download | bugzilla-658b8746fe0c7e93630d993aa27fec8ca9c3fe4b.tar.gz bugzilla-658b8746fe0c7e93630d993aa27fec8ca9c3fe4b.tar.bz2 bugzilla-658b8746fe0c7e93630d993aa27fec8ca9c3fe4b.zip |
Bug 365264: The modification date of flags is erased on flag modification - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=justdave
-rw-r--r-- | Bugzilla/Flag.pm | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Bugzilla/Flag.pm b/Bugzilla/Flag.pm index 4ca68e697..2f8cd194a 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()); |