Skip to content
Snippets Groups Projects
Commit fcf332ab authored by Andreas Fischer's avatar Andreas Fischer
Browse files

There is no property such as dbusername. It's 'dbuser'.

parent b90f88f9
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment