* maintenance.txt: the execute() method must be public to match Maintenance's one
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Sun, 16 Aug 2009 18:54:18 +0000 (18:54 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Sun, 16 Aug 2009 18:54:18 +0000 (18:54 +0000)
* design.txt: whitespaces fix

docs/design.txt
docs/maintenance.txt

index d1904e1..192e8c6 100644 (file)
@@ -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.
index 9128768..039c71c 100644 (file)
@@ -42,7 +42,7 @@ class DemoMaint extends Maintenance {
     parent::__construct();
   }
 
-  protected function execute() {
+  public function execute() {
   }
 }