summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon L <szaimen@e.mail.de>2023-03-04 18:48:25 +0100
committerGitHub <noreply@github.com>2023-03-04 18:48:25 +0100
commitb8390db624644ada50b9c00e7a69a109588d2a83 (patch)
tree9968b2e8e7f90b7e5ee13f41042c7a3ac65a4ad6
parenta5370fc71e88a6dad1950e57beb4643358c3bc4c (diff)
parentf8bb8dc3a00b0dab91ee2df0513eded2b3a152f2 (diff)
downloadnextcloud-server-b8390db624644ada50b9c00e7a69a109588d2a83.tar.gz
nextcloud-server-b8390db624644ada50b9c00e7a69a109588d2a83.zip
Merge pull request #37048 from nextcloud/enh/noid/improve-update-wording
update wording for disabled web updater
-rw-r--r--core/ajax/update.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ajax/update.php b/core/ajax/update.php
index 74907fa56b9..dae08ad0882 100644
--- a/core/ajax/update.php
+++ b/core/ajax/update.php
@@ -100,7 +100,7 @@ class FeedBackHandler {
if (\OCP\Util::needUpgrade()) {
$config = \OC::$server->getSystemConfig();
if ($config->getValue('upgrade.disable-web', false)) {
- $eventSource->send('failure', $l->t('Please use the command line updater because automatic updating is disabled in the config.php.'));
+ $eventSource->send('failure', $l->t('Please use the command line updater because updating via the browser is disabled in your config.php.'));
$eventSource->close();
exit();
}