]> source.dussan.org Git - nextcloud-server.git/commitdiff
feat(PHP): Allow PHP 8.4
authorJoas Schilling <coding@schilljs.com>
Fri, 8 Nov 2024 09:14:56 +0000 (10:14 +0100)
committerJoas Schilling <coding@schilljs.com>
Fri, 8 Nov 2024 11:59:12 +0000 (12:59 +0100)
Signed-off-by: Joas Schilling <coding@schilljs.com>
lib/versioncheck.php

index 43539468e3b61573a1c8f50d0f29b6357c6aa1a9..9e33f584a9abe5f3218e78afb10881b2756065d4 100644 (file)
@@ -13,10 +13,10 @@ if (PHP_VERSION_ID < 80100) {
        exit(1);
 }
 
-// Show warning if >= PHP 8.4 is used as Nextcloud is not compatible with >= PHP 8.4 for now
-if (PHP_VERSION_ID >= 80400) {
+// Show warning if >= PHP 8.5 is used as Nextcloud is not compatible with >= PHP 8.5 for now
+if (PHP_VERSION_ID >= 80500) {
        http_response_code(500);
-       echo 'This version of Nextcloud is not compatible with PHP>=8.4.<br/>';
+       echo 'This version of Nextcloud is not compatible with PHP>=8.5.<br/>';
        echo 'You are currently running ' . PHP_VERSION . '.';
        exit(1);
 }