From: Alexandre Emsenhuber Date: Sun, 16 Aug 2009 18:54:18 +0000 (+0000) Subject: * maintenance.txt: the execute() method must be public to match Maintenance's one X-Git-Tag: 1.31.0-rc.0~40275 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22articles_versions%22%2C%22id_article=%24id_article%22%29%20.%20%22?a=commitdiff_plain;h=e14387dccbab8454627e5d8e79eaa124250630f4;p=lhc%2Fweb%2Fwiklou.git * maintenance.txt: the execute() method must be public to match Maintenance's one * design.txt: whitespaces fix --- diff --git a/docs/design.txt b/docs/design.txt index d1904e1e7b..192e8c6aca 100644 --- a/docs/design.txt +++ b/docs/design.txt @@ -56,7 +56,7 @@ Primary classes: interface language is instantiated as $wgLang, and the local content language as $wgContLang; be sure to use the *correct* language object depending upon the circumstances. - See also language.txt. + See also language.txt. Parser Class used to transform wikitext to html. diff --git a/docs/maintenance.txt b/docs/maintenance.txt index 91287688c1..039c71c53a 100644 --- a/docs/maintenance.txt +++ b/docs/maintenance.txt @@ -42,7 +42,7 @@ class DemoMaint extends Maintenance { parent::__construct(); } - protected function execute() { + public function execute() { } }