From 5193105e5cde807b21465b717dd224838bfc6d4e Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Wed, 10 Sep 2008 19:31:01 +0000 Subject: [PATCH] (bug 15555) misspelled replace_variables() function in doc of Parser::preprocessToDom(), changed to replaceVariables() --- 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 2f4d7027bc..02ad544c87 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 replace_variables(). + * This is the ghost of replaceVariables(). * * @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