diff options
| author | 2016-10-25 00:32:12 +0200 | |
|---|---|---|
| committer | 2016-10-25 00:32:12 +0200 | |
| commit | 2cbf307963c72c4f5cf18732bb581a88a46d668b (patch) | |
| tree | 99047b1a45f706d3c21bde799c6d2a59ebd18b30 /app/install.php | |
| parent | 7dc9862596d9b598c4b1146b29cfb3548dafce40 (diff) | |
Fix install bug 2
Diffstat (limited to 'app/install.php')
| -rw-r--r-- | app/install.php | 2 |
1 files changed, 1 insertions, 1 deletions
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')); |
