diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-10-18 09:15:54 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-10-18 09:15:54 +0200 |
commit | 4b8f8c5203da4d04cfd0ca76175130644e11d55b (patch) | |
tree | c5273b8906c8d432af27e99748a73ce62b7065dc /core/js | |
parent | 822623109f4f4b3252c04a5c0ccf6757a882e771 (diff) | |
download | nextcloud-server-4b8f8c5203da4d04cfd0ca76175130644e11d55b.tar.gz nextcloud-server-4b8f8c5203da4d04cfd0ca76175130644e11d55b.zip |
Deprecate PHP7.3 for Nextcloud 23
* 7.3 reaches EOL shortly after the release of 23.0.0
* Nextcloud 24 will require PHP7.4
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'core/js')
-rw-r--r-- | core/js/setupchecks.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index f5ce3b91906..a16f50e122a 100644 --- a/core/js/setupchecks.js +++ b/core/js/setupchecks.js @@ -290,9 +290,9 @@ type: OC.SetupChecks.MESSAGE_TYPE_INFO }) } - if (data.phpSupported && data.phpSupported.version.substr(0, 3) === '7.2') { + if (data.phpSupported && data.phpSupported.version.substr(0, 3) === '7.3') { messages.push({ - msg: t('core', 'Nextcloud 20 is the last release supporting PHP 7.2. Nextcloud 21 requires at least PHP 7.3.'), + msg: t('core', 'Nextcloud 23 is the last release supporting PHP 7.3. Nextcloud 24 requires at least PHP 7.4.'), type: OC.SetupChecks.MESSAGE_TYPE_INFO }) } |