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. --- doeditvotes.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doeditvotes.cgi') diff --git a/doeditvotes.cgi b/doeditvotes.cgi index c499af494..2584d583b 100755 --- a/doeditvotes.cgi +++ b/doeditvotes.cgi @@ -103,7 +103,7 @@ foreach my $id (@buglist) { foreach my $id (keys %affected) { SendSQL("select sum(count) from votes where bug_id = $id"); my $v = FetchOneColumn(); - SendSQL("update bugs set votes = $v where bug_id = $id"); + SendSQL("update bugs set votes = $v, delta_ts=delta_ts where bug_id = $id"); } SendSQL("unlock tables"); -- cgit v1.2.3-24-g4f1b