mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-10 19:41:26 +01:00
Fix: Error management if function PHP imagecreatefromjpeg does not exists
This commit is contained in:
@@ -3003,7 +3003,7 @@ function vignette($file, $maxWidth = 160, $maxHeight = 120, $extName='_small', $
|
|||||||
}
|
}
|
||||||
if ($imgfonction)
|
if ($imgfonction)
|
||||||
{
|
{
|
||||||
if (function_exists($imgfonction))
|
if (! function_exists($imgfonction))
|
||||||
{
|
{
|
||||||
// Fonctions de conversion non presente dans ce PHP
|
// Fonctions de conversion non presente dans ce PHP
|
||||||
return 'Creation de vignette impossible. Ce PHP ne supporte pas les fonctions du module GD '.$imgfonction;
|
return 'Creation de vignette impossible. Ce PHP ne supporte pas les fonctions du module GD '.$imgfonction;
|
||||||
|
|||||||
Reference in New Issue
Block a user