X-Git-Url: https://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2FPrefixSearch.php;h=2885679c4706cd046622e3ba3863ecc8c1712e83;hb=a7f7f8cbcb14a2ca597b5510d2549e74b3617667;hp=caa3ef52869d69b6f05ff64aa67090d38af69a5f;hpb=13d083b2065092b4bc48288a8ecdee9270fdb19e;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/PrefixSearch.php b/includes/PrefixSearch.php index caa3ef5286..2885679c47 100644 --- a/includes/PrefixSearch.php +++ b/includes/PrefixSearch.php @@ -95,7 +95,6 @@ abstract class PrefixSearch { * @return array */ public function searchWithVariants( $search, $limit, array $namespaces, $offset = 0 ) { - wfProfileIn( __METHOD__ ); $searches = $this->search( $search, $limit, $namespaces, $offset ); // if the content language has variants, try to retrieve fallback results @@ -116,7 +115,6 @@ abstract class PrefixSearch { } } } - wfProfileOut( __METHOD__ ); return $searches; }