Index: trunk/phase3/maintenance/install.php |
— | — | @@ -55,7 +55,7 @@ |
56 | 56 | $this->addOption( 'env-checks', "Run environment checks only, don't change anything" ); |
57 | 57 | $this->addOption( 'upgrade', |
58 | 58 | 'Allow the upgrade to continue despite an existing LocalSettings.php', false, true ); |
59 | | - |
| 59 | + $this->addOption( 'showexceptions', "Whether to set wgShowExceptionDetails", false, true ); |
60 | 60 | } |
61 | 61 | |
62 | 62 | public function execute() { |
Index: trunk/phase3/includes/installer/CliInstaller.php |
— | — | @@ -35,6 +35,7 @@ |
36 | 36 | 'upgrade' => 'cliUpgrade', /* As long as it isn't $confItems |
37 | 37 | * in LocalSettingsGenerator, we |
38 | 38 | * should be fine. */ |
| 39 | + 'showexceptions' => 'wgShowExceptionDetails', |
39 | 40 | ); |
40 | 41 | |
41 | 42 | /** |