mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 09:43:03 +00:00
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:
parent
8cd2aef50d
commit
1c55e6b40c
2 changed files with 7 additions and 2 deletions
|
@ -341,6 +341,7 @@ function package_details($id=0, $SID="") {
|
|||
* SeB- property that search string (K) represents
|
||||
* values: n - package name
|
||||
* nd - package name & description
|
||||
* x - package name (exact match)
|
||||
* m - package maintainer's username
|
||||
* s - package submitter's username
|
||||
* do_Orphans - boolean. whether to search packages
|
||||
|
@ -440,11 +441,15 @@ function pkg_search_page($SID="") {
|
|||
# Search by submitter
|
||||
elseif (isset($_GET["SeB"]) && $_GET["SeB"] == "s") {
|
||||
$q_where .= "AND SubmitterUID = ".uid_from_username($_GET['K'])." ";
|
||||
# Search by name
|
||||
}
|
||||
# Search by name
|
||||
elseif (isset($_GET["SeB"]) && $_GET["SeB"] == "n") {
|
||||
$q_where .= "AND (Name LIKE '%".$_GET['K']."%') ";
|
||||
}
|
||||
# Search by name (exact match)
|
||||
elseif (isset($_GET["SeB"]) && $_GET["SeB"] == "x") {
|
||||
$q_where .= "AND (Name = '".$_GET['K']."') ";
|
||||
}
|
||||
# Search by name and description (Default)
|
||||
else {
|
||||
$q_where .= "AND (Name LIKE '%".$_GET['K']."%' OR ";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue