From: Max Semenik Date: Fri, 30 Oct 2009 13:31:21 +0000 (+0000) Subject: Follow-up to r58322: removed debugging code X-Git-Tag: 1.31.0-rc.0~39025 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dmembres/cotisations/gestion/rappel_supprimer.php?a=commitdiff_plain;h=21159b7f936d964ac814e350a2494af9a39d7c1d;p=lhc%2Fweb%2Fwiklou.git Follow-up to r58322: removed debugging code --- diff --git a/includes/search/SearchSqlite.php b/includes/search/SearchSqlite.php index c49eb2628b..31981dc21d 100644 --- a/includes/search/SearchSqlite.php +++ b/includes/search/SearchSqlite.php @@ -48,7 +48,6 @@ class SearchSqlite extends SearchEngine { $res = $this->db->selectField( 'updatelog', 'ul_key', array( 'ul_key' => 'fts3' ), __METHOD__ ); self::$fulltextSupported = $res && $this->db->numRows( $res ) > 0; } - wfDebug( "*************************************************************" . self::$fulltextSupported . "****************\n" ); return self::$fulltextSupported; }