diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-09-10 11:08:25 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2020-09-10 10:12:00 +0000 |
commit | a3b4e69ffee4fbfcec8be83822e5a00873b16a10 (patch) | |
tree | c056f76e59f9bbd7fd8c7143ed76bacc7276c579 | |
parent | cacaf4b4ee8323d0daa7f923b7336ce9cf17792f (diff) | |
download | nextcloud-server-a3b4e69ffee4fbfcec8be83822e5a00873b16a10.tar.gz nextcloud-server-a3b4e69ffee4fbfcec8be83822e5a00873b16a10.zip |
Clarify PHP warning in admin settings
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
-rw-r--r-- | core/js/setupchecks.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index 2e94c82486c..87fe0e7ac69 100644 --- a/core/js/setupchecks.js +++ b/core/js/setupchecks.js @@ -272,7 +272,7 @@ } if (data.phpSupported && data.phpSupported.version.substr(0, 3) === '7.2') { messages.push({ - msg: t('core', 'Nextcloud 19 is the last release supporting PHP 7.2. Nextcloud 20 requires at least PHP 7.3.'), + msg: t('core', 'Nextcloud 20 is the last release supporting PHP 7.2. Nextcloud 21 requires at least PHP 7.3.'), type: OC.SetupChecks.MESSAGE_TYPE_INFO }) } |