Index: trunk/extensions/Configure/CHANGELOG |
— | — | @@ -1,6 +1,10 @@ |
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.15.2 - 5 January 2010 |
| 6 | + scripts/writePHP.php now uses NS_FILE and NS_FILE_TALK rather than NS_IMAGE |
| 7 | + and NS_IMAGE_TALK |
| 8 | + |
5 | 9 | 0.15.1 - 30 December 2009 |
6 | 10 | * scripts/manage.php now adds a reason while reverting to a version. |
7 | 11 | * fixed a bug introduced in 0.14.19, Special:ViewConfig was unable to display |
Index: trunk/extensions/Configure/scripts/writePHP.php |
— | — | @@ -155,7 +155,7 @@ |
156 | 156 | protected function writeSettings( $version ){ |
157 | 157 | global $wgConf, $IP; |
158 | 158 | if( $this->hasOption( 'wiki' ) ) |
159 | | - $wiki = $this->getOption('wiki' ); |
| 159 | + $wiki = $this->getOption( 'wiki' ); |
160 | 160 | else |
161 | 161 | $wiki = $wgConf->getWiki(); |
162 | 162 | if( $version ){ |
— | — | @@ -239,8 +239,8 @@ |
240 | 240 | 3 => 'NS_USER_TALK', |
241 | 241 | 4 => 'NS_PROJECT', |
242 | 242 | 5 => 'NS_PROJECT_TALK', |
243 | | - 6 => 'NS_IMAGE', |
244 | | - 7 => 'NS_IMAGE_TALK', |
| 243 | + 6 => 'NS_FILE', |
| 244 | + 7 => 'NS_FILE_TALK', |
245 | 245 | 8 => 'NS_MEDIAWIKI', |
246 | 246 | 9 => 'NS_MEDIAWIKI_TALK', |
247 | 247 | 10 => 'NS_TEMPLATE', |
Index: trunk/extensions/Configure/Configure.php |
— | — | @@ -18,7 +18,7 @@ |
19 | 19 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Configure', |
20 | 20 | 'description' => 'Allow authorised users to configure the wiki via a web-based interface', |
21 | 21 | 'descriptionmsg' => 'configure-desc', |
22 | | - 'version' => '0.15.1', |
| 22 | + 'version' => '0.15.2', |
23 | 23 | ); |
24 | 24 | |
25 | 25 | # Configuration part |