From: Alexandre Emsenhuber Date: Sun, 11 Jul 2010 19:25:46 +0000 (+0000) Subject: * (bug 24045) MediaWiki:Ipb-needreblock is now wrapped in a div with class "mw-ipd... X-Git-Tag: 1.31.0-rc.0~36160 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=2bbecc3a0f6b04678bbe18195528fede65d58f04;p=lhc%2Fweb%2Fwiklou.git * (bug 24045) MediaWiki:Ipb-needreblock is now wrapped in a div with class "mw-ipd-needreblock" --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 2068d62787..1596d90618 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -109,6 +109,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * (bug 14685) Double underscore magic word usage is now tracked in the page_props table, as well as the behavioral magic words {{DEFAULTSORT}} and {{DISPLAYTITLE}} +* (bug 24045) MediaWiki:Ipb-needreblock is now wrapped in a div with class + "mw-ipd-needreblock" === Bug fixes in 1.17 === * (bug 17560) Half-broken deletion moved image files to deletion archive diff --git a/includes/specials/SpecialBlockip.php b/includes/specials/SpecialBlockip.php index ba4c2488c6..b2ee4b120f 100644 --- a/includes/specials/SpecialBlockip.php +++ b/includes/specials/SpecialBlockip.php @@ -171,7 +171,7 @@ class IPBlockForm { # Username/IP is blocked already locally if( $alreadyBlocked ) { - $wgOut->addWikiMsg( 'ipb-needreblock', $this->BlockAddress ); + $wgOut->wrapWikiMsg( "
\n$1\n
", array( 'ipb-needreblock', $this->BlockAddress ) ); } $scBlockExpiryOptions = wfMsgForContent( 'ipboptions' );