Allow 8.2 in versioncheck

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
Côme Chilliet 2022-05-19 10:03:21 +02:00 committed by Joas Schilling
parent bbd3e2b04a
commit 1fec8c07e0
No known key found for this signature in database
GPG key ID: 74434EFE0D2E2205

View file

@ -33,10 +33,10 @@ if (PHP_VERSION_ID < 80000) {
exit(1);
}
// Show warning if >= PHP 8.2 is used as Nextcloud is not compatible with >= PHP 8.2 for now
if (PHP_VERSION_ID >= 80200) {
// Show warning if >= PHP 8.3 is used as Nextcloud is not compatible with >= PHP 8.3 for now
if (PHP_VERSION_ID >= 80300) {
http_response_code(500);
echo 'This version of Nextcloud is not compatible with PHP>=8.2.<br/>';
echo 'This version of Nextcloud is not compatible with PHP>=8.3.<br/>';
echo 'You are currently running ' . PHP_VERSION . '.';
exit(1);
}