style fixes for r62035
authorConrad Irwin <conrad@users.mediawiki.org>
Fri, 5 Feb 2010 21:52:37 +0000 (21:52 +0000)
committerConrad Irwin <conrad@users.mediawiki.org>
Fri, 5 Feb 2010 21:52:37 +0000 (21:52 +0000)
includes/parser/Parser.php

index dbbe93e..cac07a1 100644 (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 );
        }