From ba78e6cda197d3b358552c49b3cfddc21c9cfb49 Mon Sep 17 00:00:00 2001 From: Rob Church Date: Fri, 7 Jul 2006 21:15:49 +0000 Subject: [PATCH] * (bug 6586) Regression in "unblocked" subtitle --- RELEASE-NOTES | 1 + includes/SpecialIpblocklist.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 1a4d2444c5..d95a06a1a7 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -34,6 +34,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * (bug 6562) Removed unmaintained ParserXml.php for now * History paging overlap bug fixed * Added linktrail to Telugu (te) +* (bug 6586) Regression in "unblocked" subtitle == Compatibility == diff --git a/includes/SpecialIpblocklist.php b/includes/SpecialIpblocklist.php index cc5c805c09..a4f960a156 100644 --- a/includes/SpecialIpblocklist.php +++ b/includes/SpecialIpblocklist.php @@ -18,7 +18,7 @@ function wfSpecialIpblocklist() { $ipu = new IPUnblockForm( $ip, $reason ); if ( "success" == $action ) { - $ipu->showList( wfMsgWikiHtml( 'unblocked', htmlspecialchars( $ip ) ) ); + $ipu->showList( $wgOut->parse( wfMsg( 'unblocked', $ip ) ) ); } else if ( "submit" == $action && $wgRequest->wasPosted() && $wgUser->matchEditToken( $wgRequest->getVal( 'wpEditToken' ) ) ) { if ( ! $wgUser->isAllowed('block') ) { -- 2.20.1