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.14 - 30 September 2008 |
| 6 | + Removed $wgArticlePathForCurid, added $wgShellLocale. |
| 7 | + |
5 | 8 | 0.7.13 - 28 September 2008 |
6 | 9 | Added $wgArticlePathForCurid and $wgExternalLinkTarget. |
7 | 10 | |
Index: trunk/extensions/Configure/Configure.settings-core.php |
— | — | @@ -21,7 +21,6 @@ |
22 | 22 | 'wgActionPaths' => 'array', |
23 | 23 | 'wgAppleTouchIcon' => 'text', |
24 | 24 | 'wgArticlePath' => 'text', |
25 | | - 'wgArticlePathForCurid' => 'bool', |
26 | 25 | 'wgDirectoryMode' => 'int', |
27 | 26 | 'wgDiff' => 'text', |
28 | 27 | 'wgDiff3' => 'text', |
— | — | @@ -694,6 +693,7 @@ |
695 | 694 | 'wgExternalDiffEngine' => 'text', |
696 | 695 | 'wgMaxShellFileSize' => 'int', |
697 | 696 | 'wgMaxShellMemory' => 'int', |
| 697 | + 'wgShellLocale' => 'text', |
698 | 698 | 'wgUpdateRowsPerQuery' => 'int', |
699 | 699 | 'wgUseAutomaticEditSummaries' => 'bool', |
700 | 700 | 'wgUseTrackbacks' => 'bool', |
— | — | @@ -857,7 +857,6 @@ |
858 | 858 | 'wgActionPaths', |
859 | 859 | 'wgAppleTouchIcon', |
860 | 860 | 'wgArticlePath', |
861 | | - 'wgArticlePathForCurid', |
862 | 861 | 'wgDirectoryMode', |
863 | 862 | 'wgDiff', |
864 | 863 | 'wgDiff3', |
— | — | @@ -1176,8 +1175,8 @@ |
1177 | 1176 | 'wgSpecialPageCacheUpdates' => array( array( '1.14alpha', '>=' ) ), |
1178 | 1177 | 'wgNewUserLog' => array( array( '1.14alpha', '>=' ) ), |
1179 | 1178 | 'wgRenderHashAppend' => array( array( '1.14alpha', '>=' ) ), |
1180 | | - 'wgArticlePathForCurid' => array( array( '1.14alpha', '>=' ) ), |
1181 | 1179 | 'wgExternalLinkTarget' => array( array( '1.14alpha', '>=' ) ), |
| 1180 | + 'wgShellLocale' => array( array( '1.14alpha', '>=' ) ), |
1182 | 1181 | ## Obsolete |
1183 | 1182 | 'wgProfileSampleRate' => array( array( '1.8alpha', '<' ) ), |
1184 | 1183 | '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.13', |
| 21 | + 'version' => '0.7.14', |
22 | 22 | ); |
23 | 23 | |
24 | 24 | ## Configuration part |