Index: trunk/phase3/includes/search/SearchSqlite.php |
— | — | @@ -234,15 +234,6 @@ |
235 | 235 | } |
236 | 236 | |
237 | 237 | /** |
238 | | - * Does not do anything for generic search engine |
239 | | - * subclasses may define this though |
240 | | - * @return String |
241 | | - */ |
242 | | - function queryRanking( $filteredTerm, $fulltext ) { |
243 | | - return ''; |
244 | | - } |
245 | | - |
246 | | - /** |
247 | 238 | * Construct the full SQL query to do the search. |
248 | 239 | * The guts shoulds be constructed in queryMain() |
249 | 240 | * @param $filteredTerm String |
— | — | @@ -252,8 +243,7 @@ |
253 | 244 | return $this->limitResult( |
254 | 245 | $this->queryMain( $filteredTerm, $fulltext ) . ' ' . |
255 | 246 | $this->queryRedirect() . ' ' . |
256 | | - $this->queryNamespaces() . ' ' . |
257 | | - $this->queryRanking( $filteredTerm, $fulltext ) |
| 247 | + $this->queryNamespaces() |
258 | 248 | ); |
259 | 249 | } |
260 | 250 | |