diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2017-05-11 17:10:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-11 17:10:45 +0200 |
commit | 23b6f0e4d72f0a70eec9b4ba69ba9e5a0cb72731 (patch) | |
tree | bb0e3c34d1290c258424e3b8ce6e1d757c53bdcc /core | |
parent | ec0c7fd104e7cc2edd029160433bdcba008849b4 (diff) | |
parent | abe4a19cbc44b34bf171d1e9499c3e834364bd31 (diff) | |
download | nextcloud-server-23b6f0e4d72f0a70eec9b4ba69ba9e5a0cb72731.tar.gz nextcloud-server-23b6f0e4d72f0a70eec9b4ba69ba9e5a0cb72731.zip |
Merge pull request #4804 from nextcloud/proper-upgrade-size
Properly decide on actual users if instance is too big
Diffstat (limited to 'core')
-rw-r--r-- | core/templates/update.use-cli.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/update.use-cli.php b/core/templates/update.use-cli.php index 52d40cdea55..9fbdbca8b21 100644 --- a/core/templates/update.use-cli.php +++ b/core/templates/update.use-cli.php @@ -3,7 +3,7 @@ <h2 class="title"><?php p($l->t('Update needed')) ?></h2> <div class="infogroup"> <?php if ($_['tooBig']) { - p($l->t('Please use the command line updater because you have a big instance.')); + p($l->t('Please use the command line updater because you have a big instance with more than 50 users.')); } else { p($l->t('Please use the command line updater because automatic updating is disabled in the config.php.')); } ?><br><br> |