From: Conrad Irwin Date: Fri, 5 Feb 2010 21:52:37 +0000 (+0000) Subject: style fixes for r62035 X-Git-Tag: 1.31.0-rc.0~37909 X-Git-Url: http://git.cyclocoop.org/fichier?a=commitdiff_plain;h=ee6dd72b7ff3e9fa3e748e1a5514e614e0eea581;p=lhc%2Fweb%2Fwiklou.git style fixes for r62035 --- diff --git a/includes/parser/Parser.php b/includes/parser/Parser.php index dbbe93ec69..cac07a1de6 100644 --- a/includes/parser/Parser.php +++ b/includes/parser/Parser.php @@ -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 ); }