X-Git-Url: http://git.pippins.net/embedvideo/.git/?a=blobdiff_plain;f=ItemAddEmbedVideo.inc;h=940a4ea1e5256c4e7d22852fa515969f1614b470;hb=f589bea028196178c518f1784767d70b93ea7e21;hp=81b5951486c1d97f4002c382bfdcbd0c8eef924e;hpb=4a4f36d3d395d88a19c33a457ec1daeec54cbeb8;p=embedvideo%2F.git diff --git a/ItemAddEmbedVideo.inc b/ItemAddEmbedVideo.inc index 81b5951..940a4ea 100644 --- a/ItemAddEmbedVideo.inc +++ b/ItemAddEmbedVideo.inc @@ -624,6 +624,10 @@ class ItemAddEmbedVideo extends ItemAddPlugin { // Set the thumbnailHeight to the current thumbnailSize // Set the thumbnailWidth to the appropriate size based on the thumbnailHeight * ratio $image_data = @getimagesize($tmpFile); + if(!$image_data) { + return array(GalleryCoreApi::error(ERROR_STORAGE_FAILURE,__FILE__,__LINE__, + "Unable to retrieve thumbnail dimensions for: $tmpFile"),null,null); + } $ratio = $image_data[0] / $image_data[1]; $debugString.="Using ratio from original thumbnail of $ratio. "; $thumbnailHeight=$thumbnailSize;