diff options
author | Victor Dubiniuk <victor.dubiniuk@gmail.com> | 2014-12-10 01:13:38 +0300 |
---|---|---|
committer | Victor Dubiniuk <victor.dubiniuk@gmail.com> | 2014-12-10 01:13:38 +0300 |
commit | c9fd3c9d2960c6457440427513f04a4f338a23d5 (patch) | |
tree | 81166aeedd483ced13863347820233e3491ea8f0 /core/command | |
parent | 81d571241991926f8820c43020a0250eb305a0b0 (diff) | |
download | nextcloud-server-c9fd3c9d2960c6457440427513f04a4f338a23d5.tar.gz nextcloud-server-c9fd3c9d2960c6457440427513f04a4f338a23d5.zip |
Inject config
Diffstat (limited to 'core/command')
-rw-r--r-- | core/command/upgrade.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/command/upgrade.php b/core/command/upgrade.php index 1d74ad0a90e..6e5ac1c5c9a 100644 --- a/core/command/upgrade.php +++ b/core/command/upgrade.php @@ -84,7 +84,7 @@ class Upgrade extends Command { if(\OC::checkUpgrade(false)) { $self = $this; - $updater = new Updater(\OC::$server->getHTTPHelper()); + $updater = new Updater(\OC::$server->getHTTPHelper(), \OC::$server->getAppConfig()); $updater->setSimulateStepEnabled($simulateStepEnabled); $updater->setUpdateStepEnabled($updateStepEnabled); |