From 2b2befcb2659701f971e0181e3f776a55961738e Mon Sep 17 00:00:00 2001 From: Rob Church Date: Sun, 14 Jan 2007 22:05:11 +0000 Subject: [PATCH] Fix double-escaping introduced in r19259 --- includes/SpecialBlockip.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SpecialBlockip.php b/includes/SpecialBlockip.php index 9619bb7f7d..f3032947fc 100644 --- a/includes/SpecialBlockip.php +++ b/includes/SpecialBlockip.php @@ -326,7 +326,7 @@ class IPBlockForm { if( $this->BlockAddress ) { $addr = htmlspecialchars( $this->BlockAddress ); $link = $skin->makeKnownLinkObj( $list, wfMsgHtml( 'ipb-unblock-addr', $addr ), - 'action=unblock&ip=' . $addr ); + 'action=unblock&ip=' . $this->BlockAddress ); } else { $link = $skin->makeKnownLinkObj( $list, wfMsgHtml( 'ipb-unblock' ), 'action=unblock' ); } -- 2.20.1