From 787a0fa3af3dd169228341d5aa52893928426671 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Sat, 23 Oct 2010 13:52:06 +0000 Subject: [PATCH] Per Reedy, fix for r70274: forgot to change this --- includes/specials/SpecialBlockip.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialBlockip.php b/includes/specials/SpecialBlockip.php index 2d2d0346c2..80616dd143 100644 --- a/includes/specials/SpecialBlockip.php +++ b/includes/specials/SpecialBlockip.php @@ -54,7 +54,7 @@ class IPBlockForm extends SpecialPage { # bug 15810: blocked admins should have limited access here if ( $wgUser->isBlocked() ) { - $status = IPBlockForm::checkUnblockSelf( $ipb->BlockAddress ); + $status = IPBlockForm::checkUnblockSelf( $this->BlockAddress ); if ( $status !== true ) { throw new ErrorPageError( 'badaccess', $status ); } -- 2.20.1