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.7.6 - 15 September 2008 |
| 6 | + Added $wgNewUserLog. |
| 7 | + |
5 | 8 | 0.7.5 - 12 September 2008 |
6 | 9 | Now support $wgExternalStores. |
7 | 10 | |
Index: trunk/extensions/Configure/Configure.settings-core.php |
— | — | @@ -598,8 +598,9 @@ |
599 | 599 | 'wgDefaultUserOptions' => 'array', |
600 | 600 | 'wgDisableAnonTalk' => 'bool', |
601 | 601 | 'wgMaxNameChars' => 'int', |
| 602 | + 'wgMaxSigChars' => 'int', |
602 | 603 | 'wgMinimalPasswordLength' => 'int', |
603 | | - 'wgMaxSigChars' => 'int', |
| 604 | + 'wgNewUserLog' => 'bool', |
604 | 605 | 'wgReservedUsernames' => 'array', |
605 | 606 | 'wgShowIPinHeader' => 'bool', |
606 | 607 | 'wgBrowserBlackList' => 'array', |
— | — | @@ -1168,6 +1169,7 @@ |
1169 | 1170 | 'wgLinkHolderBatchSize' => array( array( '1.14alpha', '>=' ) ), |
1170 | 1171 | 'wgEnableImageWhitelist' => array( array( '1.14alpha', '>=' ) ), |
1171 | 1172 | 'wgSpecialPageCacheUpdates' => array( array( '1.14alpha', '>=' ) ), |
| 1173 | + 'wgNewUserLog' => array( array( '1.14alpha', '>=' ) ), |
1172 | 1174 | ## Obsolete |
1173 | 1175 | 'wgProfileSampleRate' => array( array( '1.8alpha', '<' ) ), |
1174 | 1176 | 'wgProfilerType' => array( array( '1.8alpha', '<' ) ), |
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.7.5', |
| 21 | + 'version' => '0.7.6', |
22 | 22 | ); |
23 | 23 | |
24 | 24 | ## Configuration part |