diff options
Diffstat (limited to 'web/lib/pkgfuncs.inc')
-rw-r--r-- | web/lib/pkgfuncs.inc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/web/lib/pkgfuncs.inc b/web/lib/pkgfuncs.inc index e432355..3013b44 100644 --- a/web/lib/pkgfuncs.inc +++ b/web/lib/pkgfuncs.inc @@ -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 "; |