diff --git a/administrator/components/com_installer/models/languages.php b/administrator/components/com_installer/models/languages.php index 6b0b827afba02..b0b4294f637bd 100644 --- a/administrator/components/com_installer/models/languages.php +++ b/administrator/components/com_installer/models/languages.php @@ -126,7 +126,7 @@ protected function _getListQuery() if (!empty($search)) { $search = $db->quote('%' . str_replace(' ', '%', $db->escape(trim($search), true) . '%')); - $query->where('(name LIKE ' . $search . ')'); + $query->where('(LOWER(name) LIKE ' . strtolower($search) . ')'); } // Add the list ordering clause.