Add option to search for exact name matches only (fixes FS#23556).

Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
Lukas Fleischer 2011-04-06 19:21:12 +02:00
parent 8cd2aef50d
commit 1c55e6b40c
2 changed files with 7 additions and 2 deletions

View file

@ -38,7 +38,7 @@
<label><?php print __("Search by"); ?></label>
<select name='SeB'>
<?php
$searchby = array('nd' => __('Name, Description'), 'n' => __('Name Only'), 'm' => __('Maintainer'), 's' => __('Submitter'));
$searchby = array('nd' => __('Name, Description'), 'n' => __('Name Only'), 'x' => ('Exact name'), 'm' => __('Maintainer'), 's' => __('Submitter'));
foreach ($searchby as $k => $v):
if (isset($_REQUEST['SeB']) && $_REQUEST['SeB'] == $k):
?>