From: terry%mozilla.org <> Date: Tue, 12 Oct 1999 04:17:17 +0000 (+0000) Subject: Sort votes in decreasing order, not increasing. X-Git-Tag: bugzilla-2.8~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cffbaf4b373e6781ba0707e617d6bf9e7530ad90;p=thirdparty%2Fbugzilla.git Sort votes in decreasing order, not increasing. --- diff --git a/buglist.cgi b/buglist.cgi index 6afbbf12ab..cdd5ba0777 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) {