diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2022-11-08 11:19:05 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2022-11-10 09:56:32 +0100 |
commit | 75a1721d7d05d1767a3501eb7935fd3772dcb655 (patch) | |
tree | c9b16ed8c144f4aeedbc5a160e6276abec59d580 | |
parent | cfa291ec8f68f89e8560b2e297c0b600cb2ea224 (diff) | |
download | nextcloud-server-75a1721d7d05d1767a3501eb7935fd3772dcb655.tar.gz nextcloud-server-75a1721d7d05d1767a3501eb7935fd3772dcb655.zip |
Deprecate PHP7.4
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
-rw-r--r-- | apps/settings/lib/Controller/CheckSetupController.php | 2 | ||||
-rw-r--r-- | core/js/setupchecks.js | 6 |
2 files changed, 1 insertions, 7 deletions
diff --git a/apps/settings/lib/Controller/CheckSetupController.php b/apps/settings/lib/Controller/CheckSetupController.php index 96fa6c20fc3..76da8cd2d29 100644 --- a/apps/settings/lib/Controller/CheckSetupController.php +++ b/apps/settings/lib/Controller/CheckSetupController.php @@ -330,7 +330,7 @@ class CheckSetupController extends Controller { * @return bool */ protected function isPhpOutdated(): bool { - return PHP_VERSION_ID < 70400; + return PHP_VERSION_ID < 80000; } /** diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index 338d818eeee..67f8d70bd31 100644 --- a/core/js/setupchecks.js +++ b/core/js/setupchecks.js @@ -303,12 +303,6 @@ type: OC.SetupChecks.MESSAGE_TYPE_INFO }) } - if (data.phpSupported && data.phpSupported.version.substr(0, 3) === '7.3') { - messages.push({ - 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 - }) - } if(!data.forwardedForHeadersWorking) { messages.push({ msg: t('core', 'The reverse proxy header configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If not, this is a security issue and can allow an attacker to spoof their IP address as visible to the Nextcloud. Further information can be found in the {linkstart}documentation ↗{linkend}.') |