From: This, that and the other Date: Wed, 4 Nov 2015 23:47:23 +0000 (+1100) Subject: Removed raw HTML from tags-create-explanation message in SpecialTags.php X-Git-Tag: 1.31.0-rc.0~9097 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=2d2e5ff665e14e6a0b522a0f82c6e72ec072867b;p=lhc%2Fweb%2Fwiklou.git Removed raw HTML from tags-create-explanation message in SpecialTags.php Bug: T111754 Change-Id: I0d1e84fae279845d1fa4f273e7c718010230eb36 --- diff --git a/includes/specials/SpecialTags.php b/includes/specials/SpecialTags.php index 70eee9f0ae..71f387b621 100644 --- a/includes/specials/SpecialTags.php +++ b/includes/specials/SpecialTags.php @@ -100,7 +100,7 @@ class SpecialTags extends SpecialPage { $form = new HTMLForm( $fields, $this->getContext() ); $form->setAction( $this->getPageTitle( 'create' )->getLocalURL() ); $form->setWrapperLegendMsg( 'tags-create-heading' ); - $form->setHeaderText( $this->msg( 'tags-create-explanation' )->plain() ); + $form->setHeaderText( $this->msg( 'tags-create-explanation' )->parseAsBlock() ); $form->setSubmitCallback( array( $this, 'processCreateTagForm' ) ); $form->setSubmitTextMsg( 'tags-create-submit' ); $form->show();