[Debtags-commits] [svn] r1466 -
central-database/branches/alioth/webfrontend
Enrico Zini
enrico at costa.debian.org
Mon Oct 31 22:59:06 UTC 2005
Author: enrico
Date: Mon Oct 31 22:59:06 2005
New Revision: 1466
Modified:
central-database/branches/alioth/webfrontend/index.cgi
Log:
Sort tags by sdesc in the navigational view
Modified: central-database/branches/alioth/webfrontend/index.cgi
==============================================================================
--- central-database/branches/alioth/webfrontend/index.cgi (original)
+++ central-database/branches/alioth/webfrontend/index.cgi Mon Oct 31 22:59:06 2005
@@ -167,8 +167,8 @@
NAME => $f->name,
SDESC => $f->sdesc,
LDESC => $f->ldesc,
- SEEN => [ sort { $a->{NAME} cmp $b->{NAME} } @seen_tags ],
- TAGS => [ sort { $a->{NAME} cmp $b->{NAME} } @tags ],
+ SEEN => [ sort { $a->{SDESC} cmp $b->{SDESC} } @seen_tags ],
+ TAGS => [ sort { $a->{SDESC} cmp $b->{SDESC} } @tags ],
COUNT => $facet_counts{$f->name},
SELCOUNT => scalar(@seen_tags),
UNSCOUNT => scalar(@tags),
More information about the Debtags-commits
mailing list