From: Happy-melon Date: Mon, 14 Mar 2011 21:10:41 +0000 (+0000) Subject: Follow-up r83909, fix errors seen on TWN reported in CR X-Git-Tag: 1.31.0-rc.0~31408 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=598345b014d4f88445390361af5edec9279293ac;p=lhc%2Fweb%2Fwiklou.git Follow-up r83909, fix errors seen on TWN reported in CR --- 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(); } }