diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2008-03-21 11:49:34 +0100 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2008-03-21 11:49:34 +0100 |
commit | 086ae52d12011746a75f5588e877347bc0457352 (patch) | |
tree | e73263c7a29d0f94fafb874562610e16eb292ba8 /includes/api/ApiHelp.php | |
parent | 749e7fb2bae7bbda855de3c9e319435b9f698ff7 (diff) |
Update auf MediaWiki 1.12.0
Diffstat (limited to 'includes/api/ApiHelp.php')
-rw-r--r-- | includes/api/ApiHelp.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/includes/api/ApiHelp.php b/includes/api/ApiHelp.php index 9f1e88ea..47a45ea1 100644 --- a/includes/api/ApiHelp.php +++ b/includes/api/ApiHelp.php @@ -46,14 +46,18 @@ class ApiHelp extends ApiBase { $this->dieUsage('', 'help'); } - protected function getDescription() { + public function shouldCheckMaxlag() { + 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 30222 2008-01-28 19:05:26Z catrope $'; } } |