diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-07-07 15:00:19 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-07-07 15:00:19 +0200 |
commit | a64652e12aec9dabe41008326b42c9d2fbd0872c (patch) | |
tree | d18afab4f6991224fb997b760435b9b3e8412cd3 /core/ajax/update.php | |
parent | 645600ae03101c1212576022548781641f2b4970 (diff) | |
download | nextcloud-server-a64652e12aec9dabe41008326b42c9d2fbd0872c.tar.gz nextcloud-server-a64652e12aec9dabe41008326b42c9d2fbd0872c.zip |
Remove 3rd party text for disabled apps on update
Diffstat (limited to 'core/ajax/update.php')
-rw-r--r-- | core/ajax/update.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ajax/update.php b/core/ajax/update.php index a4c7951d836..14b4f913f76 100644 --- a/core/ajax/update.php +++ b/core/ajax/update.php @@ -93,7 +93,7 @@ if (OC::checkUpgrade(false)) { } if (!empty($disabledThirdPartyApps)) { $eventSource->send('notice', - (string)$l->t('Following 3rd party apps have been disabled: %s', implode(', ', $disabledThirdPartyApps))); + (string)$l->t('Following apps have been disabled: %s', implode(', ', $disabledThirdPartyApps))); } $eventSource->send('done', ''); |