Index: trunk/phase3/includes/parser/Parser.php |
— | — | @@ -499,11 +499,9 @@ |
500 | 500 | * are removed, but templates arguments and parser functions are untouched. |
501 | 501 | * |
502 | 502 | * This is not called by the parser itself, see braceSubstitution for its transclusion. |
503 | | - * |
504 | | - * @public |
505 | 503 | */ |
506 | | - function getTransclusionText( $title ) { |
507 | | - list($text, $title) = $this->getTemplateDom( $title ); |
| 504 | + public function getTransclusionText( $title ) { |
| 505 | + list( $text, $title ) = $this->getTemplateDom( $title ); |
508 | 506 | $flags = PPFrame::NO_ARGS | PPFrame::NO_TEMPLATES; |
509 | 507 | return $this->getPreprocessor()->newFrame()->expand( $text, $flags ); |
510 | 508 | } |