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.6.14 - 18 August 2008 |
| 6 | + Removed $wgEnablePersistentCookies, added $wgRestrictDisplayTitle. |
| 7 | + |
5 | 8 | 0.6.13 - 16 August 2008 |
6 | 9 | Added "empty" option for $wgConfigureAdditionalExtensions. |
7 | 10 | |
Index: trunk/extensions/Configure/Configure.settings-core.php |
— | — | @@ -407,7 +407,6 @@ |
408 | 408 | 'wgCookiePrefix' => 'text', |
409 | 409 | 'wgCookieSecure' => 'bool', |
410 | 410 | 'wgDisableCookieCheck' => 'bool', |
411 | | - 'wgEnablePersistentCookies' => 'bool', |
412 | 411 | 'wgHttpOnlyBlacklist' => 'array', |
413 | 412 | 'wgSessionName' => 'text', |
414 | 413 | ), |
— | — | @@ -527,6 +526,7 @@ |
528 | 527 | 'wgParserConf' => 'array', |
529 | 528 | 'wgParserCacheExpireTime' => 'int', |
530 | 529 | 'wgParserTestFiles' => 'array', |
| 530 | + 'wgRestrictDisplayTitle' => 'bool', |
531 | 531 | 'wgUseXMLparser' => 'bool', |
532 | 532 | ), |
533 | 533 | 'html' => array( |
— | — | @@ -1157,8 +1157,8 @@ |
1158 | 1158 | 'wgPasswordAttemptThrottle' => array( array( '1.14alpha', '>=' ) ), |
1159 | 1159 | 'wgCategoryPrefixedDefaultSortkey' => array( array( '1.14alpha', '>=' ) ), |
1160 | 1160 | 'wgSQLiteDataDirMode' => array( array( '1.14alpha', '>=' ) ), |
1161 | | - 'wgEnablePersistentCookies' => array( array( '1.14alpha', '>=' ) ), |
1162 | 1161 | 'wgEnableHtmlDiff' => array( array( '1.14alpha', '>=' ) ), |
| 1162 | + 'wgRestrictDisplayTitle' => array( array( '1.14alpha', '>=' ) ), |
1163 | 1163 | ## Obsolete |
1164 | 1164 | 'wgProfileSampleRate' => array( array( '1.8alpha', '<' ) ), |
1165 | 1165 | '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.6.13', |
| 21 | + 'version' => '0.6.14', |
22 | 22 | ); |
23 | 23 | |
24 | 24 | ## Configuration part |