From 7b9ae643bc7aea34a62b5bc081808b0362532738 Mon Sep 17 00:00:00 2001 From: mattkloc Date: Mon, 9 Mar 2015 23:48:12 -0400 Subject: [PATCH] Close #1390 installer no longer forces a password for the database --- installer/wizard.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/wizard.php b/installer/wizard.php index 8c78cf4d44..aae6da4bc0 100644 --- a/installer/wizard.php +++ b/installer/wizard.php @@ -602,8 +602,8 @@ public static function install_requirements() */ public static function install_database() { - // Verify the host, username and password have been specified - $params = array('host', 'username', 'password', 'database'); + // Verify that the host, username and database have been specified + $params = array('host', 'username', 'database'); if ( ! self::_validate_params($params, $_POST)) return FALSE;