From: terry%mozilla.org <> Date: Fri, 21 Jan 2000 05:42:23 +0000 (+0000) Subject: Continue making the last-changed date on a bug be updated if someone only adds a... X-Git-Tag: bugzilla-2.12~447 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=25b1e39ff0f5d11e88d7165830d58857437a56de;p=thirdparty%2Fbugzilla.git Continue making the last-changed date on a bug be updated if someone only adds a comment. --- diff --git a/globals.pl b/globals.pl index 90d2513b79..009b8b235a 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 {