From: Florian Date: Tue, 5 Jan 2016 19:58:03 +0000 (+0100) Subject: Fix false message output method on Special:ExpandTemplates X-Git-Tag: 1.31.0-rc.0~8428^2 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=dc3cdea96b5097638affac5e346bc32cc7caa06e;p=lhc%2Fweb%2Fwiklou.git Fix false message output method on Special:ExpandTemplates Follow up: I480c2165c908ca7c8e08ed5990e386ddb515f3b0 Bug: T122907 Change-Id: I9882f327878422b0f579cae088a7178a1e8aa00e --- diff --git a/includes/specials/SpecialExpandTemplates.php b/includes/specials/SpecialExpandTemplates.php index 17c224c2ff..14d86755e4 100644 --- a/includes/specials/SpecialExpandTemplates.php +++ b/includes/specials/SpecialExpandTemplates.php @@ -207,7 +207,7 @@ class SpecialExpandTemplates extends SpecialPage { $form ->setSubmitTextMsg( 'expand_templates_ok' ) ->setWrapperLegendMsg( 'expandtemplates' ) - ->setHeaderText( $this->msg( 'expand_templates_intro' )->text() ) + ->setHeaderText( $this->msg( 'expand_templates_intro' )->parse() ) ->setSubmitCallback( array( $this, 'onSubmitInput' ) ) ->showAlways(); }