Merge "Remove #bodyContent { width: 100%; }"
[lhc/web/wiklou.git] / includes / PrefixSearch.php
index 45c591a..a9179eb 100644 (file)
@@ -37,8 +37,8 @@ abstract class PrefixSearch {
         * @return Array of strings
         */
        public static function titleSearch( $search, $limit, $namespaces = array() ) {
-               $search = new StringPrefixSearch;
-               return $search->search( $search, $limit, $namespaces );
+               $prefixSearch = new StringPrefixSearch;
+               return $prefixSearch->search( $search, $limit, $namespaces );
        }
 
        /**