From 93a66a41aa1c2332e815b35dc9ed57a93eb6a730 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Mon, 15 Sep 2008 06:37:57 +0000 Subject: [PATCH] Revert r40712, replace_variables is correct. --- includes/parser/Parser.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/parser/Parser.php b/includes/parser/Parser.php index 92c0a4d31b..346be86bc2 100644 --- a/includes/parser/Parser.php +++ b/includes/parser/Parser.php @@ -2605,7 +2605,7 @@ class Parser /** * Preprocess some wikitext and return the document tree. - * This is the ghost of replaceVariables(). + * This is the ghost of replace_variables(). * * @param string $text The text to parse * @param integer flags Bitwise combination of: @@ -2625,7 +2625,7 @@ class Parser * * @private */ - function preprocessToDom( $text, $flags = 0 ) { + function preprocessToDom ( $text, $flags = 0 ) { $dom = $this->getPreprocessor()->preprocessToObj( $text, $flags ); return $dom; } -- 2.20.1