summaryrefslogtreecommitdiffstats
path: root/lib/private/setup/oci.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@owncloud.com>2013-11-28 11:29:04 +0100
committerAndreas Fischer <bantu@owncloud.com>2013-11-28 11:33:49 +0100
commitfcf332abbfcec2e61103eff8b36c833b6da16bf4 (patch)
treea19735effb7653d1e4da31ae2fb02710c7c7d8a8 /lib/private/setup/oci.php
parentb90f88f939ec67eca548c123494288dbf79d9159 (diff)
downloadnextcloud-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.php6
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);