mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
There is no property such as dbusername. It's 'dbuser'.
This commit is contained in:
parent
b90f88f939
commit
fcf332abbf
1 changed files with 3 additions and 3 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue