From 598345b014d4f88445390361af5edec9279293ac Mon Sep 17 00:00:00 2001 From: Happy-melon Date: Mon, 14 Mar 2011 21:10:41 +0000 Subject: [PATCH] Follow-up r83909, fix errors seen on TWN reported in CR --- includes/specials/SpecialBlockList.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/specials/SpecialBlockList.php b/includes/specials/SpecialBlockList.php index c7f6b74d47..3beab0133c 100644 --- a/includes/specials/SpecialBlockList.php +++ b/includes/specials/SpecialBlockList.php @@ -50,7 +50,7 @@ class SpecialBlockList extends SpecialPage { $par = $wgRequest->getVal( 'ip', $par ); $this->target = trim( $wgRequest->getVal( 'wpTarget', $par ) ); - $this->options = $wgRequest->getArray( 'wpOptions' ); + $this->options = $wgRequest->getArray( 'wpOptions', array() ); $action = $wgRequest->getText( 'action' ); @@ -419,6 +419,6 @@ class BlockListPager extends TablePager { } function getTitle() { - return $this->mPage->getTitle(); + return $this->page->getTitle(); } } -- 2.20.1