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
path: root/core/ajax
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2015-10-21 11:39:56 +0300
committerJoas Schilling <nickvergessen@owncloud.com>2015-10-21 11:39:56 +0300
commite66e67567f778e7f7b4871e3bfb055beb8de1517 (patch)
treed5db7e40e0b7fb3a8aa94d9988dd1dc6b5914846 /core/ajax
parent74f41349b76e258e17fe4a39d7845fdcca3d554f (diff)
Update - Only add one section for disabled apps
Diffstat (limited to 'core/ajax')
-rw-r--r--core/ajax/update.php15
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'));
}