(bug 15555) misspelled replace_variables() function in doc of Parser::preprocessToDom(), changed to replaceVariables()
This commit is contained in:
parent
d899b1cb19
commit
5193105e5c
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue