Skip to content

Commit

Permalink
Fix search in Language manager
Browse files Browse the repository at this point in the history
Fix for #753
  • Loading branch information
eSilverStrike committed Feb 1, 2017
1 parent cab0289 commit b3ac31d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion system/classes/language.class.php
Expand Up @@ -298,8 +298,9 @@ public static function adminShowList()
'form_url' => $_CONF['site_admin_url'] . '/language.php',
);
$queryArray = array(
'sql' => "SELECT * FROM {$_TABLES['language_items']} ",
'sql' => "SELECT * FROM {$_TABLES['language_items']} WHERE 1=1",
'query_group' => 'id, var_name, language, name, value ',
'query_fields' => array('var_name', 'language', 'name', 'value'),
);
$defaultSortArray = array(
'direction' => 'ASC',
Expand Down

0 comments on commit b3ac31d

Please sign in to comment.