From: Brion Vibber Date: Tue, 19 Apr 2005 20:30:07 +0000 (+0000) Subject: * (bug 1927) Incorrect escaping on wikitext message in Blockip X-Git-Tag: 1.5.0alpha1~236 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=0af7d96f9a138035abd57a02daa6a7a327a87e68;p=lhc%2Fweb%2Fwiklou.git * (bug 1927) Incorrect escaping on wikitext message in Blockip --- diff --git a/includes/SpecialBlockip.php b/includes/SpecialBlockip.php index a46d70d3ba..5da520d49b 100644 --- a/includes/SpecialBlockip.php +++ b/includes/SpecialBlockip.php @@ -50,7 +50,7 @@ class IPBlockForm { global $wgRequest, $wgSysopUserBans; $wgOut->setPagetitle( htmlspecialchars( wfMsg( 'blockip' ) ) ); - $wgOut->addWikiText( htmlspecialchars( wfMsg( 'blockiptext' ) ) ); + $wgOut->addWikiText( wfMsg( 'blockiptext' ) ); if($wgSysopUserBans) { $mIpaddress = htmlspecialchars( wfMsg( 'ipadressorusername' ) );