Index: trunk/phase3/includes/SkinTemplate.php |
— | — | @@ -1337,12 +1337,10 @@ |
1338 | 1338 | * @private |
1339 | 1339 | */ |
1340 | 1340 | function msgWiki( $str ) { |
1341 | | - global $wgParser, $wgOut; |
| 1341 | + global $wgOut; |
1342 | 1342 | |
1343 | 1343 | $text = $this->translator->translate( $str ); |
1344 | | - $parserOutput = $wgParser->parse( $text, $wgOut->getTitle(), |
1345 | | - $wgOut->parserOptions(), true ); |
1346 | | - echo $parserOutput->getText(); |
| 1344 | + echo $wgOut->parse( $text ); |
1347 | 1345 | } |
1348 | 1346 | |
1349 | 1347 | /** |