Index: trunk/extensions/Configure/Configure.body.php |
— | — | @@ -416,6 +416,9 @@ |
417 | 417 | 'href' => "$wgScriptPath/extensions/Configure/Configure.css?$wgStyleVersion", |
418 | 418 | ) |
419 | 419 | ); |
| 420 | + if( is_callable( array( $wgOut, 'addScriptFile' ) ) ){ # 1.13 + |
| 421 | + $wgOut->addScriptFile( 'prefs.js' ); |
| 422 | + } |
420 | 423 | } |
421 | 424 | |
422 | 425 | /** |
Index: trunk/extensions/Configure/Configure.settings.php |
— | — | @@ -628,7 +628,8 @@ |
629 | 629 | 'wgSpamRegex' => 'text', |
630 | 630 | 'wgStyleVersion' => 'int', |
631 | 631 | 'wgUpdateRowsPerQuery' => 'int', |
632 | | - 'wgUseCommaCount' => 'int', |
| 632 | + 'wgUseAutomaticEditSummaries' => 'bool', |
| 633 | + 'wgUseCommaCount' => 'bool', |
633 | 634 | 'wgUseETag' => 'bool', |
634 | 635 | 'wgUseExternalEditor' => 'bool', |
635 | 636 | 'wgUseTrackbacks' => 'bool', |
— | — | @@ -1033,6 +1034,7 @@ |
1034 | 1035 | 'wgSharedPrefix' => array( array( '1.13alpha', '>=' ) ), |
1035 | 1036 | 'wgSharedTables' => array( array( '1.13alpha', '>=' ) ), |
1036 | 1037 | 'wgSQLiteDataDir' => array( array( '1.13alpha', '>=' ) ), |
| 1038 | + 'wgUseAutomaticEditSummaries' => array( array( '1.13alpha', '>=' ) ), |
1037 | 1039 | ## Obsolete |
1038 | 1040 | 'wgProfileSampleRate' => array( array( '1.8alpha', '<' ) ), |
1039 | 1041 | 'wgProfilerType' => array( array( '1.8alpha', '<' ) ), |
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.2.8 - 10 May 2008 |
| 6 | + * Load prefs.js in 1.13 + |
| 7 | + * Added $wgUseAutomaticEditSummaries |
| 8 | + |
5 | 9 | 0.2.7 - 8 May 2008 |
6 | 10 | Added $wgSQLiteDataDir. |
7 | 11 | |
Index: trunk/extensions/Configure/Configure.php |
— | — | @@ -16,7 +16,7 @@ |
17 | 17 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Configure', |
18 | 18 | 'description' => 'Allow authorised users to configure the wiki by a web-based interface', |
19 | 19 | 'descriptionmsg' => 'configure-desc', |
20 | | - 'version' => '0.2.7', |
| 20 | + 'version' => '0.2.8', |
21 | 21 | ); |
22 | 22 | |
23 | 23 | ## Adding new rights... |