diff options
author | Simon L <szaimen@e.mail.de> | 2023-06-10 09:47:04 +0200 |
---|---|---|
committer | backportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com> | 2023-06-12 11:36:29 +0000 |
commit | c5b43a43023f1fa392fd80b3637cecea35444d86 (patch) | |
tree | 1ed4326c138a9eb1de0d0b793c975038596d34e1 /core/ajax | |
parent | 0ef69969bcdb228a993faf364d359b20918d6f7a (diff) | |
download | nextcloud-server-c5b43a43023f1fa392fd80b3637cecea35444d86.tar.gz nextcloud-server-c5b43a43023f1fa392fd80b3637cecea35444d86.zip |
allow to specify upgrade.cli-upgrade-link in order to link to the correct documentation
Signed-off-by: Simon L <szaimen@e.mail.de>
Diffstat (limited to 'core/ajax')
-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 dae08ad0882..9fa163eef71 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 updating via the browser is disabled in your config.php.')); + $eventSource->send('failure', $l->t('Please use the command line updater because updating via browser is disabled in your config.php.')); $eventSource->close(); exit(); } |