From: Rob Church Date: Fri, 7 Jul 2006 21:15:49 +0000 (+0000) Subject: * (bug 6586) Regression in "unblocked" subtitle X-Git-Tag: 1.31.0-rc.0~56357 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22articles%22%2C%22id_article=%24id_article%22%29%20.%20%22?a=commitdiff_plain;h=ba78e6cda197d3b358552c49b3cfddc21c9cfb49;p=lhc%2Fweb%2Fwiklou.git * (bug 6586) Regression in "unblocked" subtitle --- 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') ) {