diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-04-17 15:25:51 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-04-17 15:25:59 +0200 |
commit | 86356e888ecdcb80cde46c531305eef63cc49911 (patch) | |
tree | 0f6f424bd0838a427ee0597c0124423c4d652497 /lib/installer.php | |
parent | c070b624a69c0f51ebfb1cd3c3fda01d98bfd91d (diff) | |
download | nextcloud-server-86356e888ecdcb80cde46c531305eef63cc49911.tar.gz nextcloud-server-86356e888ecdcb80cde46c531305eef63cc49911.zip |
save the correct config entry
Diffstat (limited to 'lib/installer.php')
-rw-r--r-- | lib/installer.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/installer.php b/lib/installer.php index 14e2be6600f..965642e8476 100644 --- a/lib/installer.php +++ b/lib/installer.php @@ -68,7 +68,7 @@ class OC_INSTALLER{ self::createDBUser($username,$password,$connection); //use the admin login data for the new database user OC_CONFIG::setValue('dbuser',$username); - OC_CONFIG::setValue('dbpass',$password); + OC_CONFIG::setValue('dbpassword',$password); //create the database self::createDatabase($dbname,$username,$connection); |