diff options
author | Simon L <szaimen@e.mail.de> | 2023-06-10 09:47:04 +0200 |
---|---|---|
committer | Simon L <szaimen@e.mail.de> | 2023-06-10 10:05:36 +0200 |
commit | 918859cafdbb1c0439e34e75d6d1d5c74160c3d7 (patch) | |
tree | 3148d2fa7dcc37ffa88e3537d960dc0a586eef11 /core/ajax/update.php | |
parent | 99e1014ff1d039cf37e75e1facdae57399c58074 (diff) | |
download | nextcloud-server-918859cafdbb1c0439e34e75d6d1d5c74160c3d7.tar.gz nextcloud-server-918859cafdbb1c0439e34e75d6d1d5c74160c3d7.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/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 c28f2cdcd7c..2348e205283 100644 --- a/core/ajax/update.php +++ b/core/ajax/update.php @@ -103,7 +103,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(); } |