X-Git-Url: https://scripts.mit.edu/gitweb/autoinstallsdev/mediawiki.git/blobdiff_plain/d7967d5e4460e08b6b258307afbca0596b18a3dd..dc9cc5d707f5a612938cc9371614cc41c328fda2:/includes/api/ApiHelp.php diff --git a/includes/api/ApiHelp.php b/includes/api/ApiHelp.php index 9f1e88ea..c001a7dc 100644 --- a/includes/api/ApiHelp.php +++ b/includes/api/ApiHelp.php @@ -30,8 +30,8 @@ if (!defined('MEDIAWIKI')) { /** * This is a simple class to handle action=help - * - * @addtogroup API + * + * @ingroup API */ class ApiHelp extends ApiBase { @@ -46,14 +46,21 @@ class ApiHelp extends ApiBase { $this->dieUsage('', 'help'); } - protected function getDescription() { + public function shouldCheckMaxlag() { + return false; + } + + public function isReadMode() { + return false; + } + + public function getDescription() { return array ( 'Display this help screen.' ); } public function getVersion() { - return __CLASS__ . ': $Id: ApiHelp.php 23531 2007-06-29 01:19:14Z simetrical $'; + return __CLASS__ . ': $Id: ApiHelp.php 48091 2009-03-06 13:49:44Z catrope $'; } } -