summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2019-02-19 09:47:13 +0100
committerErich Eckner <git@eckner.net>2019-02-19 09:47:13 +0100
commit37ba3ac0ca27ed3c68be6da97cb68a0a86bd5934 (patch)
tree1824a985cebb52ebcbe3423f84a1ab4028d796f2 /packages
parent2653ca5ae8e9836339aac14e8c891b7b9b26367f (diff)
downloadwebsite-37ba3ac0ca27ed3c68be6da97cb68a0a86bd5934.tar.xz
lib/style.php: take list of columns/sorts as parameter in print_package_listing() -> print_listing()
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 b36142f..fb568da 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_package_listing($exact_matches, false);
+ print_listing($exact_matches, false, $pkglist_sorts);
?>
</div>
<?php
@@ -318,7 +318,7 @@ if (count($exact_matches) > 0) {
header_and_footer();
- print_package_listing($fuzzy_matches, true);
+ print_listing($fuzzy_matches, true, $pkglist_sorts);
header_and_footer();