diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-12-03 14:35:15 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-12-03 14:35:15 +0100 |
commit | aa0265bd34cdb14baa234832f226ef4da7d1e711 (patch) | |
tree | 34fd437efc95b4788eecfe570d84da923ed4aa07 | |
parent | 2d1cc8aaebc567cc006d387921c7fbbed35280ce (diff) | |
download | nextcloud-server-aa0265bd34cdb14baa234832f226ef4da7d1e711.tar.gz nextcloud-server-aa0265bd34cdb14baa234832f226ef4da7d1e711.zip |
Replace OC_Config in setup
-rw-r--r-- | lib/private/setup/postgresql.php | 7 | ||||
-rw-r--r-- | lib/private/setup/sqlite.php | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/lib/private/setup/postgresql.php b/lib/private/setup/postgresql.php index 0a559e7a589..59762209d08 100644 --- a/lib/private/setup/postgresql.php +++ b/lib/private/setup/postgresql.php @@ -66,7 +66,8 @@ class PostgreSQL extends AbstractDatabase { $this->createDBUser($connection); } - \OC_Config::setValues([ + $systemConfig = \OC::$server->getSystemConfig(); + $systemConfig->setValues([ 'dbuser' => $this->dbUser, 'dbpassword' => $this->dbPassword, ]); @@ -78,8 +79,8 @@ class PostgreSQL extends AbstractDatabase { pg_close($connection); // connect to the ownCloud database (dbname=$this->dbname) and check if it needs to be filled - $this->dbUser = \OC_Config::getValue('dbuser'); - $this->dbPassword = \OC_Config::getValue('dbpassword'); + $this->dbUser = $systemConfig->getValue('dbuser'); + $this->dbPassword = $systemConfig->getValue('dbpassword'); $e_host = addslashes($this->dbHost); $e_dbname = addslashes($this->dbName); diff --git a/lib/private/setup/sqlite.php b/lib/private/setup/sqlite.php index 820a89d4cff..ce6005620eb 100644 --- a/lib/private/setup/sqlite.php +++ b/lib/private/setup/sqlite.php @@ -31,7 +31,7 @@ class Sqlite extends AbstractDatabase { } public function setupDatabase($username) { - $datadir = \OC_Config::getValue('datadirectory'); + $datadir = \OC::$server->getSystemConfig()->getValue('datadirectory'); //delete the old sqlite database first, might cause infinte loops otherwise if(file_exists("$datadir/owncloud.db")) { |