Fix false message output method on Special:ExpandTemplates
authorFlorian <florian.schmidt.stargatewissen@gmail.com>
Tue, 5 Jan 2016 19:58:03 +0000 (20:58 +0100)
committerFlorianschmidtwelzow <florian.schmidt.stargatewissen@gmail.com>
Wed, 6 Jan 2016 14:47:37 +0000 (14:47 +0000)
Follow up: I480c2165c908ca7c8e08ed5990e386ddb515f3b0

Bug: T122907
Change-Id: I9882f327878422b0f579cae088a7178a1e8aa00e

includes/specials/SpecialExpandTemplates.php

index 17c224c..14d8675 100644 (file)
@@ -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();
        }