style fixes for r62035

This commit is contained in:
Conrad Irwin 2010-02-05 21:52:37 +00:00
parent c85bd2c4c4
commit ee6dd72b7f

View file

@ -499,11 +499,9 @@ class Parser
* are removed, but templates arguments and parser functions are untouched.
*
* This is not called by the parser itself, see braceSubstitution for its transclusion.
*
* @public
*/
function getTransclusionText( $title ) {
list($text, $title) = $this->getTemplateDom( $title );
public function getTransclusionText( $title ) {
list( $text, $title ) = $this->getTemplateDom( $title );
$flags = PPFrame::NO_ARGS | PPFrame::NO_TEMPLATES;
return $this->getPreprocessor()->newFrame()->expand( $text, $flags );
}