X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2Fparser%2FCoreTagHooks.php;h=9755ea93f6b3a61b474c074fc20f665d2fe3e471;hb=7798b70e7e66b5a2e228f13714dd82d3b40a4573;hp=3ffa16c41dc38aa8efbdcfa7281f48e970c1ce33;hpb=bc2a7ba5df27660543a2948f3729d9cc2bd544c5;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/parser/CoreTagHooks.php b/includes/parser/CoreTagHooks.php index 3ffa16c41d..9755ea93f6 100644 --- a/includes/parser/CoreTagHooks.php +++ b/includes/parser/CoreTagHooks.php @@ -135,13 +135,13 @@ class CoreTagHooks { public static function indicator( $content, array $attributes, Parser $parser, PPFrame $frame ) { if ( !isset( $attributes['name'] ) || trim( $attributes['name'] ) === '' ) { return '' . - wfMessage( 'invalid-indicator-name' )->inContentLanguage()->text() . + wfMessage( 'invalid-indicator-name' )->inContentLanguage()->parse() . ''; } $parser->getOutput()->setIndicator( trim( $attributes['name'] ), - $parser->recursiveTagParse( $content, $frame ) + Parser::stripOuterParagraph( $parser->recursiveTagParseFully( $content, $frame ) ) ); return '';