Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-01-19 16:00:27 +0300
committerMorris Jobke <hey@morrisjobke.de>2018-01-19 16:00:27 +0300
commitc70927eaa0d558575ee63b149005ae9ed17e88df (patch)
tree077f02eba8ad1f50e332c29a47efd4b09fc6f5ba /core/Command
parentfdd7a5325006d5ff023f04fab32627e08393f053 (diff)
Remove not needed 3rdparty app disabling during upgrade for PHP 5.x
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'core/Command')
-rw-r--r--core/Command/Upgrade.php14
1 files changed, 1 insertions, 13 deletions
diff --git a/core/Command/Upgrade.php b/core/Command/Upgrade.php
index 2a502dbe921..cadc1f8530c 100644
--- a/core/Command/Upgrade.php
+++ b/core/Command/Upgrade.php
@@ -76,13 +76,7 @@ class Upgrade extends Command {
protected function configure() {
$this
->setName('upgrade')
- ->setDescription('run upgrade routines after installation of a new release. The release has to be installed before.')
- ->addOption(
- '--no-app-disable',
- null,
- InputOption::VALUE_NONE,
- 'skips the disable of third party apps'
- );
+ ->setDescription('run upgrade routines after installation of a new release. The release has to be installed before.');
}
/**
@@ -108,9 +102,6 @@ class Upgrade extends Command {
$this->installer
);
- if ($input->getOption('no-app-disable')) {
- $updater->setSkip3rdPartyAppsDisable(true);
- }
$dispatcher = \OC::$server->getEventDispatcher();
$progress = new ProgressBar($output);
$progress->setFormat(" %message%\n %current%/%max% [%bar%] %percent:3s%%");
@@ -224,9 +215,6 @@ class Upgrade extends Command {
$updater->listen('\OC\Updater', 'incompatibleAppDisabled', function ($app) use($output) {
$output->writeln('<comment>Disabled incompatible app: ' . $app . '</comment>');
});
- $updater->listen('\OC\Updater', 'thirdPartyAppDisabled', function ($app) use ($output) {
- $output->writeln('<comment>Disabled 3rd-party app: ' . $app . '</comment>');
- });
$updater->listen('\OC\Updater', 'checkAppStoreAppBefore', function ($app) use($output) {
$output->writeln('<info>Checking for update of app ' . $app . ' in appstore</info>');
});