Index: trunk/phase3/includes/installer/LocalSettingsGenerator.php |
— | — | @@ -45,7 +45,7 @@ |
46 | 46 | 'wgDBtype', 'wgSecretKey', 'wgRightsUrl', 'wgSitename', 'wgRightsIcon', |
47 | 47 | 'wgRightsText', 'wgRightsCode', 'wgMainCacheType', 'wgEnableUploads', |
48 | 48 | 'wgMainCacheType', '_MemCachedServers', 'wgDBserver', 'wgDBuser', |
49 | | - 'wgDBpassword', 'wgUseInstantCommons', 'wgUpgradeKey' |
| 49 | + 'wgDBpassword', 'wgUseInstantCommons', 'wgUpgradeKey', 'wgDefaultSkin', |
50 | 50 | ), |
51 | 51 | $db->getGlobalNames() |
52 | 52 | ); |
— | — | @@ -286,7 +286,7 @@ |
287 | 287 | |
288 | 288 | ## Default skin: you can change the default skin. Use the internal symbolic |
289 | 289 | ## names, ie 'standard', 'nostalgia', 'cologneblue', 'monobook', 'vector': |
290 | | -\$wgDefaultSkin = 'vector'; |
| 290 | +\$wgDefaultSkin = \"{$this->values['wgDefaultSkin']}\"; |
291 | 291 | |
292 | 292 | ## For attaching licensing metadata to pages, and displaying an |
293 | 293 | ## appropriate copyright notice / icon. GNU Free Documentation |
Index: trunk/phase3/includes/installer/CoreInstaller.php |
— | — | @@ -49,6 +49,7 @@ |
50 | 50 | 'wgSecretKey', |
51 | 51 | 'wgUseInstantCommons', |
52 | 52 | 'wgUpgradeKey', |
| 53 | + 'wgDefaultSkin', |
53 | 54 | ); |
54 | 55 | |
55 | 56 | /** |