From bbb9c02f500b84986064c6533ced4b35f7435efa Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" <> Date: Tue, 12 Oct 1999 18:18:28 +0000 Subject: Updating the vote cache should not update the date-last-changed field in the bug. --- globals.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'globals.pl') diff --git a/globals.pl b/globals.pl index ac18305e1..2f915ca5f 100644 --- a/globals.pl +++ b/globals.pl @@ -535,7 +535,7 @@ sub RemoveVotes { close SENDMAIL; } SendSQL("delete from votes where bug_id = $id"); - SendSQL("update bugs set votes = 0 where bug_id = $id"); + SendSQL("update bugs set votes = 0, delta_ts=delta_ts where bug_id = $id"); } } -- cgit v1.2.3-24-g4f1b