diff options
author | terry%mozilla.org <> | 2000-01-21 06:42:23 +0100 |
---|---|---|
committer | terry%mozilla.org <> | 2000-01-21 06:42:23 +0100 |
commit | 25b1e39ff0f5d11e88d7165830d58857437a56de (patch) | |
tree | 20f484c7e19d3cd95694329d364459a27b185851 | |
parent | 6396d46e5a1774f0e33e13738875a3109e662d46 (diff) | |
download | bugzilla-25b1e39ff0f5d11e88d7165830d58857437a56de.tar.gz bugzilla-25b1e39ff0f5d11e88d7165830d58857437a56de.tar.xz |
Continue making the last-changed date on a bug be updated if someone only adds a comment.
-rw-r--r-- | globals.pl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/globals.pl b/globals.pl index 90d2513b7..009b8b235 100644 --- a/globals.pl +++ b/globals.pl @@ -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 { |