From: Platonides Date: Sat, 21 Aug 2010 21:52:47 +0000 (+0000) Subject: Replace usage of deprecated Parser::tidy() X-Git-Tag: 1.31.0-rc.0~35394 X-Git-Url: http://git.cyclocoop.org/data/Luca_Pacioli_%28Gemaelde%29.jpeg?a=commitdiff_plain;h=22ca4bc06a4390a1c1fc0a942f59d41b7928e5c9;p=lhc%2Fweb%2Fwiklou.git Replace usage of deprecated Parser::tidy() --- diff --git a/maintenance/parserTests.inc b/maintenance/parserTests.inc index 1ad1bea0d5..4e9665ef44 100644 --- a/maintenance/parserTests.inc +++ b/maintenance/parserTests.inc @@ -1094,7 +1094,7 @@ class ParserTest { private function tidy( $text ) { global $wgUseTidy; if ( $wgUseTidy ) { - $text = Parser::tidy( $text ); + $text = MWTidy::tidy( $text ); } return $text; }