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.9 - 11 August 2008 |
| 6 | + Added $wgSQLiteDataDirMode. |
| 7 | + |
5 | 8 | 0.6.8 - 10 August 2008 |
6 | 9 | Added $wgCategoryPrefixedDefaultSortkey. |
7 | 10 | |
Index: trunk/extensions/Configure/Configure.settings-core.php |
— | — | @@ -35,6 +35,7 @@ |
36 | 36 | 'wgScriptPath' => 'text', |
37 | 37 | 'wgServer' => 'text', |
38 | 38 | 'wgServerName' => 'text', |
| 39 | + 'wgSQLiteDataDirMode' => 'int', |
39 | 40 | 'wgStyleDirectory' => 'text', |
40 | 41 | 'wgStylePath' => 'text', |
41 | 42 | 'wgStyleSheetPath' => 'text', |
— | — | @@ -1144,6 +1145,7 @@ |
1145 | 1146 | 'wgOverrideSiteFeed' => array( array( '1.14alpha', '>=' ) ), |
1146 | 1147 | 'wgPasswordAttemptThrottle' => array( array( '1.14alpha', '>=' ) ), |
1147 | 1148 | 'wgCategoryPrefixedDefaultSortkey' => array( array( '1.14alpha', '>=' ) ), |
| 1149 | + 'wgSQLiteDataDirMode' => array( array( '1.14alpha', '>=' ) ), |
1148 | 1150 | ## Obsolete |
1149 | 1151 | 'wgProfileSampleRate' => array( array( '1.8alpha', '<' ) ), |
1150 | 1152 | '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.8', |
| 21 | + 'version' => '0.6.9', |
22 | 22 | ); |
23 | 23 | |
24 | 24 | ## Configuration part |