aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/lib
diff options
context:
space:
mode:
authorfenn-cs <fenn25.fn@gmail.com>2023-03-28 14:32:11 +0100
committerfenn-cs <fenn25.fn@gmail.com>2023-04-17 23:45:59 +0100
commit60a710c91c8ba41277f14881afad5db02de76cbf (patch)
treeb61bcfbd210fde22eab4c2a6ef2f64520fc790bd /apps/settings/lib
parent8ee52d35b82541381d23779bdce77450311166a6 (diff)
downloadnextcloud-server-60a710c91c8ba41277f14881afad5db02de76cbf.tar.gz
nextcloud-server-60a710c91c8ba41277f14881afad5db02de76cbf.zip
Deprecate PHP8.0
PHP8.0 would stop receiving security support on 26 Nov 2023 hence this deprecation. Next, is the eventual drop of PHP8.0 before its EOL. This commit also updates the message type from INFO to WARNING if the php on file has reached its EOL. See: https://www.php.net/supported-versions.php Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
Diffstat (limited to 'apps/settings/lib')
-rw-r--r--apps/settings/lib/Controller/CheckSetupController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/lib/Controller/CheckSetupController.php b/apps/settings/lib/Controller/CheckSetupController.php
index 82a7e118d06..abe76e47c9e 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 < 80000;
+ return PHP_VERSION_ID < 80100;
}
/**