Index: trunk/phase3/includes/search/SearchSqlite.php |
— | — | @@ -179,13 +179,13 @@ |
180 | 180 | } |
181 | 181 | |
182 | 182 | protected function searchInternal( $term, $fulltext ) { |
183 | | - global $wgSearchMySQLTotalHits; |
| 183 | + global $wgSearchMySQLTotalHits, $wgContLang; |
184 | 184 | |
185 | 185 | if ( !$this->fulltextSearchSupported() ) { |
186 | 186 | return null; |
187 | 187 | } |
188 | 188 | |
189 | | - $filteredTerm = $this->filter( $term ); |
| 189 | + $filteredTerm = $this->filter( $wgContLang->lc( $term ) ); |
190 | 190 | $resultSet = $this->db->query( $this->getQuery( $filteredTerm, $fulltext ) ); |
191 | 191 | |
192 | 192 | $total = null; |