diff options
author | Lukas Reschke <lukas@owncloud.com> | 2014-10-27 22:24:16 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2014-10-27 22:24:16 +0100 |
commit | d6380a53955e4de1a69e0a645821a7424e44135e (patch) | |
tree | 8529f9c75f1fd5e931fd0fb29366522d34ce27e3 /lib/base.php | |
parent | a00712aa65169b248cac8e541dfe69fd82082609 (diff) | |
parent | 79778d6a5118f3d024d1d4c1e001fba8fba13423 (diff) | |
download | nextcloud-server-d6380a53955e4de1a69e0a645821a7424e44135e.tar.gz nextcloud-server-d6380a53955e4de1a69e0a645821a7424e44135e.zip |
Merge pull request #11786 from owncloud/MakeSupportedDBsConfigurable
Make supported DBs configurable within config.php
Diffstat (limited to 'lib/base.php')
-rw-r--r-- | lib/base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base.php b/lib/base.php index 4af5b515006..4a5f4e77a59 100644 --- a/lib/base.php +++ b/lib/base.php @@ -717,7 +717,7 @@ class OC { // Check if ownCloud is installed or in maintenance (update) mode if (!OC_Config::getValue('installed', false)) { - $controller = new OC\Core\Setup\Controller(); + $controller = new OC\Core\Setup\Controller(\OC::$server->getConfig()); $controller->run($_POST); exit(); } |