summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-09-20 19:37:18 +0000
committerDries Buytaert <dries@buytaert.net>2004-09-20 19:37:18 +0000
commit6690793cbb839cb788a80a2071e5240a3ffbff95 (patch)
treeb22279351dfeaa38026c56c61f8e612c27f9afc2
parent16d3f9bc60fa765d68ef5472b61b2642a56789bc (diff)
downloadbrdo-6690793cbb839cb788a80a2071e5240a3ffbff95.tar.gz
brdo-6690793cbb839cb788a80a2071e5240a3ffbff95.tar.bz2
- Patch #10472 by Gerhard and Steven: fixed bug when paging through the search results of the locale module.
-rw-r--r--includes/locale.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/locale.inc b/includes/locale.inc
index 3aeb231ff..dba8afb48 100644
--- a/includes/locale.inc
+++ b/includes/locale.inc
@@ -973,7 +973,7 @@ function _locale_string_language_list($translation) {
function _locale_string_seek_query() {
static $query = NULL;
- if (is_null($query) && isset($_REQUEST['edit'])) {
+ if (is_null($query)) {
$fields = array('string', 'language', 'searchin');
$query = new StdClass;
if (is_array($_REQUEST['edit'])) {