Skip to content

Commit

Permalink
Allow PHP 8.2 (#13759)
Browse files Browse the repository at this point in the history
  • Loading branch information
cedric-anne committed Jan 9, 2023
1 parent ce13ec0 commit 306cfb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.php
Expand Up @@ -37,9 +37,9 @@
// Need to be the very fist step before any include
if (
version_compare(PHP_VERSION, '7.4.0', '<') ||
version_compare(PHP_VERSION, '8.2.0', '>=')
version_compare(PHP_VERSION, '8.3.0', '>=')
) {
die('PHP 7.4.0 - 8.2.0 (exclusive) required');
die('PHP 7.4.0 - 8.3.0 (exclusive) required');
}

use Glpi\Application\View\TemplateRenderer;
Expand Down

0 comments on commit 306cfb6

Please sign in to comment.