diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2014-05-29 21:28:47 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2014-05-29 21:28:47 +0200 |
commit | 705242d3903034c148b4ad7c717d52be592f3e6d (patch) | |
tree | f4d1f1fe7230f9c8fb5e5747aa1719c9d377d8a4 /core/command | |
parent | 32a50563d3a93c304d7879212f349e6930d5b5d6 (diff) | |
parent | 7e055a94044100c17ffa103c56e2d238f9b4e6ac (diff) | |
download | nextcloud-server-705242d3903034c148b4ad7c717d52be592f3e6d.tar.gz nextcloud-server-705242d3903034c148b4ad7c717d52be592f3e6d.zip |
Merge pull request #8727 from owncloud/upgrade-overview
Added update overview page
Diffstat (limited to 'core/command')
-rw-r--r-- | core/command/upgrade.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/command/upgrade.php b/core/command/upgrade.php index ed72d136e24..8ce8ef9b6e5 100644 --- a/core/command/upgrade.php +++ b/core/command/upgrade.php @@ -56,6 +56,9 @@ class Upgrade extends Command { $updater->listen('\OC\Updater', 'dbUpgrade', function () use($output) { $output->writeln('<info>Updated database</info>'); }); + $updater->listen('\OC\Updater', 'disabledApps', function ($appList) use($output) { + $output->writeln('<info>Disabled incompatible apps: ' . implode(', ', $appList) . '</info>'); + }); $updater->listen('\OC\Updater', 'failure', function ($message) use($output) { $output->writeln($message); |