From 2d2e5ff665e14e6a0b522a0f82c6e72ec072867b Mon Sep 17 00:00:00 2001 From: "This, that and the other" Date: Thu, 5 Nov 2015 10:47:23 +1100 Subject: [PATCH] Removed raw HTML from tags-create-explanation message in SpecialTags.php Bug: T111754 Change-Id: I0d1e84fae279845d1fa4f273e7c718010230eb36 --- includes/specials/SpecialTags.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- 2.20.1