From cffbaf4b373e6781ba0707e617d6bf9e7530ad90 Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" <> Date: Tue, 12 Oct 1999 04:17:17 +0000 Subject: Sort votes in decreasing order, not increasing. --- buglist.cgi | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'buglist.cgi') diff --git a/buglist.cgi b/buglist.cgi index 6afbbf12a..cdd5ba077 100755 --- a/buglist.cgi +++ b/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", "bugs.votes", "Votes", "bugs.votes"); +DefCol("votes", "bugs.votes", "Votes", "bugs.votes desc"); my @collist; if (defined $::COOKIE{'COLUMNLIST'}) { @@ -530,7 +530,7 @@ foreach my $c (@collist) { $tablestart .= ""; } if (defined $::sortkey{$c}) { - $tablestart .= "$::title{$c}"; + $tablestart .= "$::title{$c}"; } else { $tablestart .= $::title{$c}; } @@ -636,6 +636,7 @@ print " if (defined $::FORM{'debug'}) { print "
$query
\n"; + print "::FORM{'order'} is
$::FORM{'order'}
\n"; } if ($toolong) { -- cgit v1.2.3-24-g4f1b