summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2019-02-19 10:08:06 +0100
committerErich Eckner <git@eckner.net>2019-02-19 10:08:06 +0100
commit1891c18d82c7714e02db96d0da44dbf09e93777d (patch)
treeffb7d752947af84877faac16a41e41be67eefb20 /packages
parenta8fdf565c7594baa2c0faa23f5d5c38fda380a0e (diff)
downloadwebsite-1891c18d82c7714e02db96d0da44dbf09e93777d.tar.xz
lib/style.php: print_listing() now suitable for lists of groups, too
Diffstat (limited to 'packages')
-rw-r--r--packages/index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/index.php b/packages/index.php
index fb568da..951dbb1 100644
--- a/packages/index.php
+++ b/packages/index.php
@@ -306,7 +306,7 @@ if (count($exact_matches) > 0) {
<p><?php print count($exact_matches); ?> exact match<?php if (count($exact_matches) != 1) print "es"; ?> found.</p>
</div>
<?php
- print_listing($exact_matches, false, $pkglist_sorts);
+ print_listing($exact_matches, false, 'package');
?>
</div>
<?php
@@ -318,7 +318,7 @@ if (count($exact_matches) > 0) {
header_and_footer();
- print_listing($fuzzy_matches, true, $pkglist_sorts);
+ print_listing($fuzzy_matches, true, 'package');
header_and_footer();