PRERELEASE 10A

This commit is contained in:
sparkyx 2025-11-22 15:40:35 +01:00
commit 83efa90a33
1141 changed files with 40635 additions and 85178 deletions

View file

@ -376,15 +376,12 @@ $fatal=0;
//------------------------------------------------------------------------------
// PHP Version
//------------------------------------------------------------------------------
if (!defined('PHP_VERSION_ID')) {
$version = explode('.',PHP_VERSION);
define('PHP_VERSION_ID', ($version[0] * 10000 + $version[1] * 100 ));
}
/**
* Minimum version = 8.2 == 80200
*/
if ( PHP_VERSION_ID < 80200) {
if (!defined('PHP_VERSION_ID') || PHP_VERSION_ID < 80200) {
echo $g_failed. " ".phpversion()." ". _("Version PHP trop basse , minimum 8.2");
echo '<p style="color:grey;margin-left:20px">';
printf(_("Cette version nécessite au moins une version supérieure ou égale à 8.2"));
@ -501,7 +498,7 @@ $majeur=explode(".",$version);
if ( $majeur[0] < 12 )
{
?>
<p><?php echo $failed . _(" Vous devez utiliser au minimum une version 12 de PostGresql, si votre distribution n'en
<p><?php echo $failed . _(" Vous devez utiliser au minimum une version 12 de PostgreSQL, si votre distribution n'en
offre pas, installez-en une en la compilant. Lisez attentivement la notice sur postgresql.org pour migrer
vos bases de données")?>
</p>