BUGFIX: Start a PHP session in installer.

This fixes blank username and password on home/successfullyinstalled
This commit is contained in:
Fred Condo 2012-04-26 16:01:30 -07:00
parent 7483970f68
commit b8228271e6

View File

@ -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;