* (bug 6586) Regression in "unblocked" subtitle
authorRob Church <robchurch@users.mediawiki.org>
Fri, 7 Jul 2006 21:15:49 +0000 (21:15 +0000)
committerRob Church <robchurch@users.mediawiki.org>
Fri, 7 Jul 2006 21:15:49 +0000 (21:15 +0000)
RELEASE-NOTES
includes/SpecialIpblocklist.php

index 1a4d244..d95a06a 100644 (file)
@@ -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 ==
 
index cc5c805..a4f960a 100644 (file)
@@ -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') ) {