From d9022f63880ce039446fba8364f68e656b7bf4cb Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Thu, 3 May 2012 13:01:35 +0200 Subject: Update to MediaWiki 1.19.0 --- includes/api/ApiDisabled.php | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'includes/api/ApiDisabled.php') diff --git a/includes/api/ApiDisabled.php b/includes/api/ApiDisabled.php index ad731bb4..55754896 100644 --- a/includes/api/ApiDisabled.php +++ b/includes/api/ApiDisabled.php @@ -24,11 +24,6 @@ * @file */ -if ( !defined( 'MEDIAWIKI' ) ) { - // Eclipse helper - will be ignored in production - require_once( "ApiBase.php" ); -} - /** * API module that dies with an error immediately. * @@ -46,7 +41,7 @@ class ApiDisabled extends ApiBase { } public function execute() { - $this->dieUsage( "The ``{$this->getModuleName()}'' module has been disabled.", 'moduledisabled' ); + $this->dieUsage( "The \"{$this->getModuleName()}\" module has been disabled.", 'moduledisabled' ); } public function isReadMode() { @@ -65,7 +60,7 @@ class ApiDisabled extends ApiBase { return 'This module has been disabled'; } - protected function getExamples() { + public function getExamples() { return array(); } -- cgit v1.2.3-54-g00ecf