(bug 15555) misspelled replace_variables() function in doc of Parser::preprocessToDom(), changed to replaceVariables()

This commit is contained in:
Alexandre Emsenhuber 2008-09-10 19:31:01 +00:00
parent d899b1cb19
commit 5193105e5c

View file

@ -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;
}