답변 1개
어떤게 버그라는 말씀이신가요? 배포판에 있는 기본 스킨이 원래 그런 형태입니다.
원하시는 게 이게 맞는지 모르겠지만
공지를 체크하면 원래 목록에 있던그림이 없어지고 공지라는 글자가 대신 보이게 됩니다.
공지도 다른 게시물처럼 이미지를 보이게 하려면 해당 게시판 스킨 list.skin.php 파일에서 아래 부분을
if ($list[$i]['is_notice']) { // 공지사항 ?>
공지
$thumb = get_list_thumbnail($board['bo_table'], $list[$i]['wr_id'], $board['bo_gallery_width'], $board['bo_gallery_height']);
if($thumb['src']) {
$img_content = '';
} else {
$img_content = 'no image';
}
echo $img_content;
}
?>
이렇게 변경하면 됩니다.
$thumb = get_list_thumbnail($board['bo_table'], $list[$i]['wr_id'], $board['bo_gallery_width'], $board['bo_gallery_height']);
if($thumb['src']) {
$img_content = '';
} else {
$img_content = 'no image';
}
echo $img_content;
?>
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인