Index: trunk/phase3/maintenance/syntaxChecker.php |
— | — | @@ -33,6 +33,10 @@ |
34 | 34 | $this->addOption( 'with-extensions', 'Also recurse the extensions folder' ); |
35 | 35 | } |
36 | 36 | |
| 37 | + protected function getDbType() { |
| 38 | + return Maintenance::DB_NONE; |
| 39 | + } |
| 40 | + |
37 | 41 | public function execute() { |
38 | 42 | if( !function_exists( 'parsekit_compile_file' ) ) { |
39 | 43 | $this->error( 'Requires PHP with parsekit', true ); |
Index: trunk/phase3/maintenance/findhooks.php |
— | — | @@ -43,6 +43,10 @@ |
44 | 44 | $this->addOption( 'online', 'Check against mediawiki.org hook documentation' ); |
45 | 45 | } |
46 | 46 | |
| 47 | + protected function getDbType() { |
| 48 | + return Maintenance::DB_NONE; |
| 49 | + } |
| 50 | + |
47 | 51 | public function execute() { |
48 | 52 | global $IP; |
49 | 53 | |