From e19a276ee2a98365362d730812808d962db17ab2 Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" Date: Fri, 8 Oct 1999 00:30:49 +0000 Subject: [PATCH] Sorting by the vote column was busted. --- webtools/bugzilla/buglist.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webtools/bugzilla/buglist.cgi b/webtools/bugzilla/buglist.cgi index 6c8e6ef1693..9fbf79ab209 100755 --- a/webtools/bugzilla/buglist.cgi +++ b/webtools/bugzilla/buglist.cgi @@ -173,7 +173,7 @@ DefCol("version", "substring(bugs.version, 1, 5)", "Vers", "bugs.version"); DefCol("os", "substring(bugs.op_sys, 1, 4)", "OS", "bugs.op_sys"); DefCol("target_milestone", "bugs.target_milestone", "TargetM", "bugs.target_milestone"); -DefCol("votes", "sum(votes.count)", "Votes", "sum(votes.count)"); +DefCol("votes", "sum(votes.count) as votesum", "Votes", "votesum"); my @collist; if (defined $::COOKIE{'COLUMNLIST'}) {