From: Robin Appelman Date: Tue, 9 Aug 2016 11:46:41 +0000 (+0200) Subject: make disabled apps more clear during upgrade X-Git-Tag: v11.0RC2~857^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fpull%2F783%2Fhead;p=nextcloud-server.git make disabled apps more clear during upgrade --- diff --git a/core/Command/Upgrade.php b/core/Command/Upgrade.php index 77d67534c6a..69354272de8 100644 --- a/core/Command/Upgrade.php +++ b/core/Command/Upgrade.php @@ -250,10 +250,10 @@ class Upgrade extends Command { $output->writeln('Checked database schema update'); }); $updater->listen('\OC\Updater', 'incompatibleAppDisabled', function ($app) use($output) { - $output->writeln('Disabled incompatible app: ' . $app . ''); + $output->writeln('Disabled incompatible app: ' . $app . ''); }); $updater->listen('\OC\Updater', 'thirdPartyAppDisabled', function ($app) use ($output) { - $output->writeln('Disabled 3rd-party app: ' . $app . ''); + $output->writeln('Disabled 3rd-party app: ' . $app . ''); }); $updater->listen('\OC\Updater', 'upgradeAppStoreApp', function ($app) use($output) { $output->writeln('Update 3rd-party app: ' . $app . '');