From b8228271e6ac3b9144be50d9ffeb2851a716290a Mon Sep 17 00:00:00 2001 From: Fred Condo Date: Thu, 26 Apr 2012 16:01:30 -0700 Subject: [PATCH] BUGFIX: Start a PHP session in installer. This fixes blank username and password on home/successfullyinstalled --- dev/install/install.php5 | 5 +++++ 1 file changed, 5 insertions(+) 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;