[이슈 사항]
해당부분은 테마문제가 아닌,
그누보드 코어 자체 "gif 이미지 썸네일깨짐(움직이는 이미지)" 문제로 아래대로 수정하시면 됩니다.
(아래대로 수정하시면 베스트 스킨, 컨텐츠 스킨 등의 썸네일이미지 깨짐문제가 제거됩니다.)
[수정방법]
그누보드 설치폴더/lib/thumbnail.lib.php
를 여시고 258줄 정도 보시면 아래 원본코드가 있습니다. (코어 버젼마다 줄수 틀릴수 있음)
원본코드를 -> 수정코드처럼 "주석"으로 처리 해 주세요.
원본코드
// Animated GIF는 썸네일 생성하지 않음
if($file_ext === 'gif') {
if(is_animated_gif($source_file))
return basename($source_file);
} else if ($file_ext === 'webp') {
if(is_animated_webp($source_file))
return basename($source_file);
}
수정코드
/*
// Animated GIF는 썸네일 생성하지 않음
if($file_ext === 'gif') {
if(is_animated_gif($source_file))
return basename($source_file);
} else if ($file_ext === 'webp') {
if(is_animated_webp($source_file))
return basename($source_file);
}
*/