]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Continue making the last-changed date on a bug be updated if someone only adds a...
authorterry%mozilla.org <>
Fri, 21 Jan 2000 05:42:23 +0000 (05:42 +0000)
committerterry%mozilla.org <>
Fri, 21 Jan 2000 05:42:23 +0000 (05:42 +0000)
globals.pl

index 90d2513b795f41d8e558bde560e88cdfde81e63c..009b8b235a6bc5b62b0ca5b2a5e0e8fd1f8cd240 100644 (file)
@@ -115,6 +115,8 @@ sub AppendComment {
 
     SendSQL("INSERT INTO longdescs (bug_id, who, bug_when, thetext) " .
             "VALUES($bugid, $whoid, now(), " . SqlQuote($comment) . ")");
+
+    SendSQL("UPDATE bugs SET delta_ts = now() WHERE bug_id = $bugid");
 }
 
 sub lsearch {