From 2cbf307963c72c4f5cf18732bb581a88a46d668b Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Tue, 25 Oct 2016 00:32:12 +0200 Subject: Fix install bug 2 --- app/install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/install.php') diff --git a/app/install.php b/app/install.php index dbc2a8908..fcc901713 100644 --- a/app/install.php +++ b/app/install.php @@ -341,7 +341,7 @@ function checkDbUser(&$dbOptions) { $str = $dbOptions['dsn']; $driver_options = $dbOptions['options']; try { - $c = new PDO($str, $dbOptions['bd_user'], $dbOptions['bd_password'], $driver_options); + $c = new PDO($str, $dbOptions['user'], $dbOptions['password'], $driver_options); if (defined('SQL_CREATE_TABLES')) { $sql = sprintf(SQL_CREATE_TABLES, $dbOptions['prefix_user'], _t('gen.short.default_category')); -- cgit v1.2.3