Index: trunk/extensions/Configure/Configure.api.php |
— | — | @@ -357,7 +357,7 @@ |
358 | 358 | ); |
359 | 359 | } |
360 | 360 | |
361 | | - protected function getPossibleErrors() { |
| 361 | + public function getPossibleErrors() { |
362 | 362 | return array_merge( parent::getPossibleErrors(), array( |
363 | 363 | array( 'code' => 'noconf', 'info' => 'You need to call efConfigureSetup() to use this module' ), |
364 | 364 | array( 'code' => 'noversion', 'info' => 'version not found' ), |
Index: trunk/extensions/Configure/CHANGELOG |
— | — | @@ -1,6 +1,9 @@ |
2 | 2 | This file lists changes on this extension. |
3 | 3 | Localisation updates are done on betawiki and aren't listed here. |
4 | 4 | |
| 5 | +0.15.18 - 31 March 2010 |
| 6 | + Fixed API module to work with current version of MediaWiki. |
| 7 | + |
5 | 8 | 0.15.17 - 28 March 2010 |
6 | 9 | Fixed $wgDnsBlacklistUrls' type. |
7 | 10 | |
Index: trunk/extensions/Configure/Configure.php |
— | — | @@ -17,7 +17,7 @@ |
18 | 18 | 'author' => array( 'Alexandre Emsenhuber', 'Andrew Garrett' ), |
19 | 19 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Configure', |
20 | 20 | 'descriptionmsg' => 'configure-desc', |
21 | | - 'version' => '0.15.17', |
| 21 | + 'version' => '0.15.18', |
22 | 22 | ); |
23 | 23 | |
24 | 24 | # Configuration part |