diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-10-21 10:39:56 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-10-21 10:39:56 +0200 |
commit | e66e67567f778e7f7b4871e3bfb055beb8de1517 (patch) | |
tree | d5db7e40e0b7fb3a8aa94d9988dd1dc6b5914846 /core/ajax | |
parent | 74f41349b76e258e17fe4a39d7845fdcca3d554f (diff) | |
download | nextcloud-server-e66e67567f778e7f7b4871e3bfb055beb8de1517.tar.gz nextcloud-server-e66e67567f778e7f7b4871e3bfb055beb8de1517.zip |
Update - Only add one section for disabled apps
Diffstat (limited to 'core/ajax')
-rw-r--r-- | core/ajax/update.php | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/core/ajax/update.php b/core/ajax/update.php index 11d159f15d1..2af110deaa4 100644 --- a/core/ajax/update.php +++ b/core/ajax/update.php @@ -112,15 +112,18 @@ if (OC::checkUpgrade(false)) { exit(); } - if (!empty($incompatibleApps)) { - $eventSource->send('notice', - (string)$l->t('Following incompatible apps have been disabled: %s', implode(', ', $incompatibleApps))); + $disabledApps = []; + foreach ($disabledThirdPartyApps as $app) { + $disabledApps[$app] = (string) $l->t('%s (3rdparty)', [$app]); } - if (!empty($disabledThirdPartyApps)) { - $eventSource->send('notice', - (string)$l->t('Following apps have been disabled: %s', implode(', ', $disabledThirdPartyApps))); + foreach ($incompatibleApps as $app) { + $disabledApps[$app] = (string) $l->t('%s (incompatible)', [$app]); } + if (!empty($disabledApps)) { + $eventSource->send('notice', + (string)$l->t('Following apps have been disabled: %s', implode(', ', $disabledApps))); + } } else { $eventSource->send('notice', (string)$l->t('Already up to date')); } |