ParamValidator: Flag as unstable for 1.34
[lhc/web/wiklou.git] / includes / LinkFilter.php
index a4e94da..e4a5f96 100644 (file)
@@ -91,7 +91,7 @@ class LinkFilter {
 
        /**
         * Canonicalize a hostname for el_index
-        * @param string $hose
+        * @param string $host
         * @return string
         */
        private static function indexifyHost( $host ) {
@@ -292,7 +292,7 @@ class LinkFilter {
                // The constant prefix is smaller than el_index_60, so we use a LIKE
                // for a prefix search.
                return [
-                       "{$p}_index_60" . $db->buildLike( [ $index, $db->anyString() ] ),
+                       "{$p}_index_60" . $db->buildLike( $index, $db->anyString() ),
                        "{$p}_index" . $db->buildLike( $like ),
                ];
        }
@@ -311,6 +311,7 @@ class LinkFilter {
         */
        public static function makeLikeArray( $filterEntry, $protocol = 'http://' ) {
                $db = wfGetDB( DB_REPLICA );
+               $like = [];
 
                $target = $protocol . $filterEntry;
                $bits = wfParseUrl( $target );