summaryrefslogtreecommitdiffstats
path: root/web/template/pkg_search_form.php
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2010-05-30 00:20:42 +0200
committerLoui Chang <louipc.ist@gmail.com>2010-06-05 00:22:22 +0200
commitb18fb08ddc7201760112f4492cdcd81961902fa1 (patch)
tree7fab9d26426b54a59652e37c8f8ee20699d42b7f /web/template/pkg_search_form.php
parent290c436046327d9f04b7d12b5fda19f4dc14f574 (diff)
downloadaur-b18fb08ddc7201760112f4492cdcd81961902fa1.tar.gz
aur-b18fb08ddc7201760112f4492cdcd81961902fa1.tar.xz
Add sorting by "Voted" and "Notify" fields
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
Diffstat (limited to 'web/template/pkg_search_form.php')
-rw-r--r--web/template/pkg_search_form.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/template/pkg_search_form.php b/web/template/pkg_search_form.php
index 88cc698e..0947ba85 100644
--- a/web/template/pkg_search_form.php
+++ b/web/template/pkg_search_form.php
@@ -56,7 +56,7 @@
<label><?php print __("Sort by"); ?></label>
<select name='SB'>
<?php
- $sortby = array('n' => 'Name', 'c' => 'Category', 'l' => 'Location', 'v' => 'Votes', 'm' => 'Maintainer', 'a' => 'Age');
+ $sortby = array('n' => 'Name', 'c' => 'Category', 'l' => 'Location', 'v' => 'Votes', 'w' => 'Voted', 'o' => 'Notify', 'm' => 'Maintainer', 'a' => 'Age');
foreach ($sortby as $k => $v):
if ($_REQUEST['SB'] == $k):
?>