리스트에서 Animated GIF 노출되지 않던 오류 수정

This commit is contained in:
chicpro
2013-05-03 14:54:38 +09:00
parent e2bbf12625
commit 1e9ffe3901

View File

@ -184,7 +184,7 @@ function thumbnail($filename, $source_path, $target_path, $thumb_width, $thumb_h
// Animated GIF는 썸네일 생성하지 않음
if($size[2] == 1) {
if(is_animated_gif($source_file))
return;
return basename($source_file);
}
$thumb_time = @filemtime($thumb_file);