From: Damjan Georgievski Date: Tue, 2 Aug 2016 13:28:19 +0000 (+0200) Subject: SetupController should use \OC::$configDir too X-Git-Tag: v11.0RC2~869^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=4d559267bd19d67a1d0661f8a1658268652dea92;p=nextcloud-server.git SetupController should use \OC::$configDir too --- diff --git a/core/Controller/SetupController.php b/core/Controller/SetupController.php index fc1efe4c11b..bb7c8c4969d 100644 --- a/core/Controller/SetupController.php +++ b/core/Controller/SetupController.php @@ -40,7 +40,7 @@ class SetupController { * @param Setup $setupHelper */ function __construct(Setup $setupHelper) { - $this->autoConfigFile = \OC::$SERVERROOT.'/config/autoconfig.php'; + $this->autoConfigFile = \OC::$configDir.'autoconfig.php'; $this->setupHelper = $setupHelper; }