From 54165257353d8fcf1ba20aec589d85c6c72c1f16 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Wed, 4 Oct 2017 20:16:26 -0700 Subject: [PATCH] Parse linter-category-{name}-desc messages Bug: T177429 Change-Id: I3f36b27fee877122d3df3c68b3aa9515412f6869 --- includes/SpecialLintErrors.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SpecialLintErrors.php b/includes/SpecialLintErrors.php index 5ff407a4..2f33fab5 100644 --- a/includes/SpecialLintErrors.php +++ b/includes/SpecialLintErrors.php @@ -47,7 +47,7 @@ class SpecialLintErrors extends SpecialPage { ]; $form = HTMLForm::factory( 'ooui', $fields, $this->getContext() ); $form->setWrapperLegend( true ); - $form->addHeaderText( $this->msg( "linter-category-{$this->category}-desc" )->escaped() ); + $form->addHeaderText( $this->msg( "linter-category-{$this->category}-desc" )->parse() ); $form->setMethod( 'get' ); $form->prepareForm()->displayForm( false ); }