From 22ca4bc06a4390a1c1fc0a942f59d41b7928e5c9 Mon Sep 17 00:00:00 2001 From: Platonides Date: Sat, 21 Aug 2010 21:52:47 +0000 Subject: [PATCH] Replace usage of deprecated Parser::tidy() --- maintenance/parserTests.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.20.1