Fix: Error management if function PHP imagecreatefromjpeg does not exists

This commit is contained in:
Laurent Destailleur
2007-08-26 23:17:33 +00:00
parent f89a537d8d
commit b22a3491c8

View File

@@ -3003,7 +3003,7 @@ function vignette($file, $maxWidth = 160, $maxHeight = 120, $extName='_small', $
}
if ($imgfonction)
{
if (function_exists($imgfonction))
if (! function_exists($imgfonction))
{
// Fonctions de conversion non presente dans ce PHP
return 'Creation de vignette impossible. Ce PHP ne supporte pas les fonctions du module GD '.$imgfonction;