From 0af7d96f9a138035abd57a02daa6a7a327a87e68 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 19 Apr 2005 20:30:07 +0000 Subject: [PATCH] * (bug 1927) Incorrect escaping on wikitext message in Blockip --- includes/SpecialBlockip.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' ) ); -- 2.20.1