diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-04-05 13:32:43 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-04-05 13:51:28 +0200 |
commit | c1c77836a8b1e01f6a6f69d3cdd35321d5bf203e (patch) | |
tree | 20832b94f9da2635a990384a5f353f6145c3e381 /web/template/pkg_search_form.php | |
parent | 68d99df78176cc7db0386a522528399b0b89b0e9 (diff) | |
download | aur-c1c77836a8b1e01f6a6f69d3cdd35321d5bf203e.tar.gz aur-c1c77836a8b1e01f6a6f69d3cdd35321d5bf203e.tar.xz |
Allow for searching by package base name
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/template/pkg_search_form.php')
-rw-r--r-- | web/template/pkg_search_form.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/web/template/pkg_search_form.php b/web/template/pkg_search_form.php index 588b4d49..ececf066 100644 --- a/web/template/pkg_search_form.php +++ b/web/template/pkg_search_form.php @@ -4,7 +4,9 @@ include_once('pkgfuncs.inc.php'); $searchby = array( 'nd' => __('Name, Description'), 'n' => __('Name Only'), - 'x' => __('Exact name'), + 'b' => __('Package Base'), + 'N' => __('Exact Name'), + 'B' => __('Exact Package Base'), 'm' => __('Maintainer'), 's' => __('Submitter') ); |