Fix create image thumbs on php 8.0

This commit is contained in:
Francis Appels
2021-06-13 17:36:51 +02:00
parent a72f66b456
commit a019996bc8

View File

@@ -590,7 +590,7 @@ function vignette($file, $maxWidth = 160, $maxHeight = 120, $extName = '_small',
break;
}
if (!is_resource($img)) {
if (!is_resource($img) && !$img instanceof \GdImage) {
dol_syslog('Failed to detect type of image. We found infoImg[2]='.$infoImg[2], LOG_WARNING);
return 0;
}