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.7 - 16 September 2008 |
| 6 | + Added $wgMetadataWhitelist and $wgUseMetadataEdit. |
| 7 | + |
5 | 8 | 0.7.6 - 15 September 2008 |
6 | 9 | Added $wgNewUserLog. |
7 | 10 | |
Index: trunk/extensions/Configure/Configure.settings-core.php |
— | — | @@ -200,6 +200,7 @@ |
201 | 201 | 'wgHideInterlanguageLinks' => 'bool', |
202 | 202 | 'wgLegalTitleChars' => 'text', |
203 | 203 | 'wgMaxArticleSize' => 'int', |
| 204 | + 'wgMetadataWhitelist' => 'text', |
204 | 205 | 'wgNoFollowLinks' => 'bool', |
205 | 206 | 'wgPageShowWatchingUsers' => 'bool', |
206 | 207 | 'wgRestrictionLevels' => 'array', |
— | — | @@ -208,6 +209,7 @@ |
209 | 210 | 'wgStyleVersion' => 'int', |
210 | 211 | 'wgUrlProtocols' => 'array', |
211 | 212 | 'wgUseExternalEditor' => 'bool', |
| 213 | + 'wgUseMetadataEdit' => 'bool', |
212 | 214 | ), |
213 | 215 | 'ajax' => array( |
214 | 216 | 'wgUseAjax' => 'bool', |
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.6', |
| 21 | + 'version' => '0.7.7', |
22 | 22 | ); |
23 | 23 | |
24 | 24 | ## Configuration part |