Merge pull request #374 from oddnoc/installer-email-password-feedback

BUGFIX: Start a PHP session in installer.
This commit is contained in:
Sean Harvey 2012-04-27 21:49:38 -07:00
commit 32d4ec837c

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;