summaryrefslogtreecommitdiff
path: root/installer/install.php
diff options
context:
space:
mode:
Diffstat (limited to 'installer/install.php')
-rw-r--r--installer/install.php7
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();