From e6a9f2383f91a9fa281584e80b98fa45d87f7a88 Mon Sep 17 00:00:00 2001 From: sparkyx Date: Wed, 3 Sep 2025 13:21:26 +0200 Subject: [PATCH] Fix Bug php version --- html/install.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/html/install.php b/html/install.php index a8ac84009..bd9b51ba7 100644 --- a/html/install.php +++ b/html/install.php @@ -381,8 +381,10 @@ if (!defined('PHP_VERSION_ID')) { define('PHP_VERSION_ID', ($version[0] * 10000 + $version[1] * 100 )); } - -if ( PHP_VERSION_ID < 82000) { +/** + * Minimum version = 8.2 == 80200 + */ +if ( PHP_VERSION_ID < 80200) { echo $g_failed. " ".phpversion()." ". _("Version PHP trop basse , minimum 8.2"); echo '

'; printf(_("Cette version nécessite au moins une version supérieure ou égale à 8.2"));