diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-07-07 16:26:30 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-07-07 16:26:30 +0200 |
commit | 4d75db0e54656bf42ef1950d53ae11d186c8c099 (patch) | |
tree | f635df3c4716ef30a63d49da23f1e9c126981cbf /core | |
parent | 10ea3f610da36b500f123c2ce271844290cd7415 (diff) | |
parent | a64652e12aec9dabe41008326b42c9d2fbd0872c (diff) | |
download | nextcloud-server-4d75db0e54656bf42ef1950d53ae11d186c8c099.tar.gz nextcloud-server-4d75db0e54656bf42ef1950d53ae11d186c8c099.zip |
Merge pull request #17439 from owncloud/update-3rdpartytext
Remove 3rd party text for disabled apps on update
Diffstat (limited to 'core')
-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', ''); |