diff options
Diffstat (limited to 'includes/search/SearchMySQL.php')
-rw-r--r-- | includes/search/SearchMySQL.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/includes/search/SearchMySQL.php b/includes/search/SearchMySQL.php index 78eba2d0..485088cb 100644 --- a/includes/search/SearchMySQL.php +++ b/includes/search/SearchMySQL.php @@ -382,8 +382,6 @@ class SearchMySQL extends SearchDatabase { function normalizeText( $string ) { global $wgContLang; - wfProfileIn( __METHOD__ ); - $out = parent::normalizeText( $string ); // MySQL fulltext index doesn't grok utf-8, so we @@ -416,8 +414,6 @@ class SearchMySQL extends SearchDatabase { "$1u82e$2", $out ); - wfProfileOut( __METHOD__ ); - return $out; } |