diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-01-10 22:00:14 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-01-10 22:00:14 +0000 |
commit | 144f8c342b35b8940b93e5934f0c149266f5c313 (patch) | |
tree | df5abc5b8a6aa6fd351052efc21b0bfa258ea0e9 /installer/install.php | |
parent | 15c25d85ece4fa53d5b3ec35e3e564133a328648 (diff) |
Change the format of the internal error messages and pretty print the installation parameters
Diffstat (limited to 'installer/install.php')
-rw-r--r-- | installer/install.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/installer/install.php b/installer/install.php index edb571a5..eaf73b6f 100644 --- a/installer/install.php +++ b/installer/install.php @@ -58,12 +58,13 @@ define('EXT', ".php"); include DOCROOT . "/installer/helpers/installer.php"; // @todo Log the results of failed call -if (installer::failed()) { +if (!installer::environment_check()) { installer::display_requirements(); die; } -installer::display_requirements(); -$install_config = installer::parse_cli_parms($argv); +installer::parse_cli_parms($argv); + +installer::display_requirements(); |