summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2011-03-12 19:54:31 +0100
committerLukas Fleischer <archlinux@cryptocrack.de>2011-03-12 19:54:35 +0100
commitbd36412321980024718306291706a85d8abde06c (patch)
tree4bdf464b5f383a847e9a36d33d4ca9e3465006de
parent9b112a56d0e3c93e062d1382527a27fc44518916 (diff)
downloadaur-bd36412321980024718306291706a85d8abde06c.tar.gz
aur-bd36412321980024718306291706a85d8abde06c.tar.xz
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>
-rw-r--r--web/lib/pkgfuncs.inc2
1 files changed, 1 insertions, 1 deletions
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 ";
}