Vous n'êtes pas identifié(e).
Bonjour,
J'ai corrigé des erreurs dans la détection de la configuration de GD dans le fichier [q]config.php[/q]. La détection des GIF et JPEG était buggée.
[c] if ($gd_info = gd_info()) {
if ($gd_info['JPEG Support']) $gdsupportjpg = $ok;
else $gdsupportjpg = $ko;
if ($gd_info['PNG Support']) $gdsupportpng = $ok;
else $gdsupportpng = $ko;
if (($gd_info['GIF Read Support'])&&($gd_info['GIF Create Support']))
$gdsupportgif = $ok;
else $gdsupportgif = $ko;
}
[/c]
Ancienne Version:
[c] if ($gd_info = gd_info()) {
if ($gd_info['JPG Support']) $gdsupportjpg = $ok;
else $gdsupportjpg = $ko;
if ($gd_info['PNG Support']) $gdsupportpng = $ok;
else $gdsupportpng = $ko;
if ($gd_info['JPG Support']) $gdsupportgif = $ok;
else $gdsupportdif = $ko;
}[/c]
Voilou
Dernière modification par Patator (17-03-2010 23:18)
Hors ligne