From 92a15c822edab63a30af0bda24f28cda1ec733bc Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Sun, 26 Aug 2012 06:20:23 +0000 Subject: [PATCH] Set the default database during install. --- install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.php b/install.php index 246893450d..c93f01e3b5 100644 --- a/install.php +++ b/install.php @@ -1609,7 +1609,7 @@ if ($_POST["install_step"] == "3" && count($_POST)>0 && strlen($_POST["persistfo if ($_POST["install_step"] == "2" && $_POST["db_type"] == "pgsql") { if (strlen($db_host) == 0) { $db_host = 'localhost'; } if (strlen($db_port) == 0) { $db_port = '5432'; } - //if (strlen($db_name) == 0) { $db_name = 'fusionpbx'; } + if (strlen($db_name) == 0) { $db_name = 'fusionpbx'; } echo "
\n"; echo "
\n";