diff --git a/dev/install/install.php5 b/dev/install/install.php5 index d59857bd8..f0ee6691c 100644 --- a/dev/install/install.php5 +++ b/dev/install/install.php5 @@ -21,6 +21,11 @@ ini_set('max_execution_time', 0); error_reporting(E_ALL | E_STRICT); +// Attempt to start a session so that the username and password can be sent back to the user. +if (function_exists('session_start')) { + session_start(); +} + // Include environment files $usingEnv = false; $envFileExists = false;