From bd36412321980024718306291706a85d8abde06c Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Sat, 12 Mar 2011 19:54:31 +0100 Subject: 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 --- web/lib/pkgfuncs.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/lib/pkgfuncs.inc b/web/lib/pkgfuncs.inc index d5e07716..03deea29 100644 --- a/web/lib/pkgfuncs.inc +++ b/web/lib/pkgfuncs.inc @@ -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 "; } -- cgit v1.2.3-24-g4f1b