diff options
Diffstat (limited to 'core/ajax/update.php')
-rw-r--r-- | core/ajax/update.php | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/core/ajax/update.php b/core/ajax/update.php index d6dfa071090..54038a479fb 100644 --- a/core/ajax/update.php +++ b/core/ajax/update.php @@ -42,21 +42,12 @@ if (OC::checkUpgrade(false)) { // avoid side effects \OC_User::setIncognitoMode(true); - - $logger = \OC::$server->getLogger(); - $config = \OC::$server->getConfig(); $updater = new \OC\Updater( \OC::$server->getHTTPHelper(), - $config, + \OC::$server->getConfig(), $logger ); - - if ($config->getSystemValue('update.skip-migration-test', false)) { - $eventSource->send('success', (string)$l->t('Migration tests are skipped - "update.skip-migration-test" is activated in config.php')); - $updater->setSimulateStepEnabled(false); - } - $incompatibleApps = []; $disabledThirdPartyApps = []; |