From 520d777c1422b9853ae5bbcb81803061e6590957 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Thu, 6 Jan 2011 17:41:09 +0000 Subject: [PATCH] Followup r79684: forgot to commit a file --- maintenance/install.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/maintenance/install.php b/maintenance/install.php index ef0e71e128..fb509cfe9d 100644 --- a/maintenance/install.php +++ b/maintenance/install.php @@ -68,7 +68,13 @@ class CommandLineInstaller extends Maintenance { new CliInstaller( $siteName, $adminName, $this->mOptions ); if ( $this->hasOption( 'env-checks' ) ) { - $installer->doEnvironmentChecks(); + $status = $installer->doEnvironmentChecks(); + if( $status->isGood() ) { + $installer->showMessage( 'config-env-good' ); + } else { + $installer->showStatusMessage( $status ); + return; + } } else { $installer->execute(); $installer->writeConfigurationFile( $this->getOption( 'confpath', $IP ) ); -- 2.20.1