X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FLinkFilter.php;h=e4a5f962d16fedfaff8ffea2327785da8eb94055;hb=e6ff1ff9153fa218015fbdaa5d5c55b0d57008de;hp=6ad9b31ab9aa057f2f191adc4ead02fcffe9b0c8;hpb=5ecb8b3ac68de658e65fe69c6b6a1c2d8b14605f;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/LinkFilter.php b/includes/LinkFilter.php index 6ad9b31ab9..e4a5f962d1 100644 --- a/includes/LinkFilter.php +++ b/includes/LinkFilter.php @@ -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 );