summaryrefslogtreecommitdiffstats
path: root/globals.pl
diff options
context:
space:
mode:
authorterry%mozilla.org <>2000-01-21 06:42:23 +0100
committerterry%mozilla.org <>2000-01-21 06:42:23 +0100
commit25b1e39ff0f5d11e88d7165830d58857437a56de (patch)
tree20f484c7e19d3cd95694329d364459a27b185851 /globals.pl
parent6396d46e5a1774f0e33e13738875a3109e662d46 (diff)
downloadbugzilla-25b1e39ff0f5d11e88d7165830d58857437a56de.tar.gz
bugzilla-25b1e39ff0f5d11e88d7165830d58857437a56de.tar.xz
Continue making the last-changed date on a bug be updated if someone only adds a comment.
Diffstat (limited to 'globals.pl')
-rw-r--r--globals.pl2
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 {