mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Fix searching for orphans with "$LANG != 'en'" (fixes FS#23252).
Regression introduced in commit ef8fab0c
. Removed the strict check again
instead of wrapping it in __() to ensure search URLs are language
independent.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
parent
9b112a56d0
commit
bd36412321
1 changed files with 1 additions and 1 deletions
|
@ -487,7 +487,7 @@ function pkg_search_page($SID="") {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($_GET["do_Orphans"]) && $_GET["do_Orphans"] == 'Orphans') {
|
if (isset($_GET["do_Orphans"])) {
|
||||||
$q_where .= "AND MaintainerUID IS NULL ";
|
$q_where .= "AND MaintainerUID IS NULL ";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue