diff options
author | Andreas Fischer <bantu@owncloud.com> | 2013-11-28 11:29:04 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@owncloud.com> | 2013-11-28 11:33:49 +0100 |
commit | fcf332abbfcec2e61103eff8b36c833b6da16bf4 (patch) | |
tree | a19735effb7653d1e4da31ae2fb02710c7c7d8a8 /lib/private/setup/oci.php | |
parent | b90f88f939ec67eca548c123494288dbf79d9159 (diff) | |
download | nextcloud-server-fcf332abbfcec2e61103eff8b36c833b6da16bf4.tar.gz nextcloud-server-fcf332abbfcec2e61103eff8b36c833b6da16bf4.zip |
There is no property such as dbusername. It's 'dbuser'.
Diffstat (limited to 'lib/private/setup/oci.php')
-rw-r--r-- | lib/private/setup/oci.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/private/setup/oci.php b/lib/private/setup/oci.php index e6475d97460..997d50c8afb 100644 --- a/lib/private/setup/oci.php +++ b/lib/private/setup/oci.php @@ -74,12 +74,12 @@ class OCI extends AbstractDatabase { $this->createDBUser($connection); - \OC_Config::setValue('dbuser', $this->dbusername); - \OC_Config::setValue('dbname', $this->dbusername); + \OC_Config::setValue('dbuser', $this->dbuser); + \OC_Config::setValue('dbname', $this->dbuser); \OC_Config::setValue('dbpassword', $this->dbpassword); //create the database not neccessary, oracle implies user = schema - //$this->createDatabase($this->dbname, $this->dbusername, $connection); + //$this->createDatabase($this->dbname, $this->dbuser, $connection); } else { \OC_Config::setValue('dbuser', $this->dbuser); |