X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2Fapi%2FApiQueryDisabled.php;h=cf0d841eaa293b5bd3fcd928b9a908c4794c0129;hb=b5993f884a3c4b0012fca120d3625452408c159d;hp=6715969aafd46f54a75c7e1736b13150f3026436;hpb=bdb20afd704f947dceff8a91093c7b1ac55d1299;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/api/ApiQueryDisabled.php b/includes/api/ApiQueryDisabled.php index 6715969aaf..cf0d841eaa 100644 --- a/includes/api/ApiQueryDisabled.php +++ b/includes/api/ApiQueryDisabled.php @@ -36,10 +36,6 @@ */ class ApiQueryDisabled extends ApiQueryBase { - public function __construct( $main, $action ) { - parent::__construct( $main, $action ); - } - public function execute() { $this->setWarning( "The \"{$this->getModuleName()}\" module has been disabled." ); } @@ -61,8 +57,4 @@ class ApiQueryDisabled extends ApiQueryBase { public function getExamples() { return array(); } - - public function getVersion() { - return __CLASS__ . ': $Id$'; - } }