Index: trunk/extensions/Configure/Configure.settings.php |
— | — | @@ -552,6 +552,7 @@ |
553 | 553 | 'wgMaxRedirectLinksRetrieved' => 'int', |
554 | 554 | 'wgSortSpecialPages' => 'bool', |
555 | 555 | 'wgSpecialPageGroups' => 'array', |
| 556 | + 'wgSpecialVersionShowHooks' => 'bool', |
556 | 557 | 'wgUseNPPatrol' => 'bool', |
557 | 558 | ), |
558 | 559 | 'recentchanges' => array( |
— | — | @@ -1104,6 +1105,7 @@ |
1105 | 1106 | 'wgRCLinkLimits' => array( array( '1.13alpha', '>=' ) ), |
1106 | 1107 | 'wgRCLinkDays' => array( array( '1.13alpha', '>=' ) ), |
1107 | 1108 | 'wgMaximumMovedPages' => array( array( '1.13alpha', '>=' ) ), |
| 1109 | + 'wgSpecialVersionShowHooks' => array( array( '1.13alpha', '>=' ) ), |
1108 | 1110 | ## Obsolete |
1109 | 1111 | 'wgProfileSampleRate' => array( array( '1.8alpha', '<' ) ), |
1110 | 1112 | 'wgProfilerType' => array( array( '1.8alpha', '<' ) ), |
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.3.10 - 4 June 2008 |
| 6 | + Added $wgSpecialVersionShowHooks. |
| 7 | + |
5 | 8 | 0.3.9 - 31 May 2008 |
6 | 9 | Removed $wgPerLanguageCaching. |
7 | 10 | |
Index: trunk/extensions/Configure/Configure.php |
— | — | @@ -17,7 +17,7 @@ |
18 | 18 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Configure', |
19 | 19 | 'description' => 'Allow authorised users to configure the wiki by a web-based interface', |
20 | 20 | 'descriptionmsg' => 'configure-desc', |
21 | | - 'version' => '0.3.9', |
| 21 | + 'version' => '0.3.10', |
22 | 22 | ); |
23 | 23 | |
24 | 24 | ## Adding new rights... |