]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Sorting by the vote column was busted.
authorterry%mozilla.org <>
Fri, 8 Oct 1999 07:30:49 +0000 (07:30 +0000)
committerterry%mozilla.org <>
Fri, 8 Oct 1999 07:30:49 +0000 (07:30 +0000)
buglist.cgi

index 6c8e6ef1693c51694c6fdcf1bfe27c60890f1d12..9fbf79ab209a4305a73cd425979a448805a1506d 100755 (executable)
@@ -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'}) {