aboutsummaryrefslogtreecommitdiffstats
path: root/maintenance/parserTests.inc
diff options
context:
space:
mode:
authorBrion Vibber <brion@users.mediawiki.org>2007-04-23 18:52:51 +0000
committerBrion Vibber <brion@users.mediawiki.org>2007-04-23 18:52:51 +0000
commit3d0b03d0ebc1a5b374760ba480a350b4ea44387b (patch)
tree2129d51b0f372bf539ca26be3f650f876f2bce91 /maintenance/parserTests.inc
parent59cbeb1454e06e5ecacf3537ec07d022a5de4be4 (diff)
downloadmediawikicore-3d0b03d0ebc1a5b374760ba480a350b4ea44387b.tar.gz
mediawikicore-3d0b03d0ebc1a5b374760ba480a350b4ea44387b.zip
Revert r21461 for now; a cleanup patch which doesn't change functionality but makes more things to clean up -- ugly function names, incorrect profiling function titles...
Notes
Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/21500
Diffstat (limited to 'maintenance/parserTests.inc')
-rw-r--r--maintenance/parserTests.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/maintenance/parserTests.inc b/maintenance/parserTests.inc
index d0a5f6fc9527..ddf8b89acf4a 100644
--- a/maintenance/parserTests.inc
+++ b/maintenance/parserTests.inc
@@ -783,7 +783,7 @@ class ParserTest {
private function tidy( $text ) {
global $wgUseTidy;
if ($wgUseTidy) {
- $text = Tidy::RunOn($text);
+ $text = Parser::tidy($text);
}
return $text;
}