forked from GNUsocial/gnu-social
		
	Save thumbnails with proper extension
This might cause double extensions, but that's ok since the filename is stored in the database. We might want to look at it later though.
This commit is contained in:
		| @@ -442,7 +442,7 @@ class File extends Managed_DataObject | ||||
|         } | ||||
|  | ||||
|         // throws exception on failure to generate thumbnail | ||||
|         $outname = "thumb-{$width}x{$height}-" . $image->filename; | ||||
|         $outname = "thumb-{$width}x{$height}-{$image->filename}." . File::guessMimeExtension($image->mimetype); | ||||
|         $outpath = self::path($outname); | ||||
|  | ||||
|         // The boundary box for our resizing | ||||
|   | ||||
		Reference in New Issue
	
	Block a user