웹진게시판 리스트에서 공지 체크때도 이미지 나오게 하고 싶습니다.
본문
안녕하세요.
제가 사용중인 웹진스킨중 리스트에서 이미지 나오는 부분의 소스가 아래와 같습니다.
그런데 글작성시 공지를 체크하면 저부분에 이미지가 나오지 않고 있습니다.
공지를 체크하던 체크하지 않던 무조건 첨부한 이미지가 나오게 하고 싶습니다.
첨부한 이미지가 없으면 no_image가 나오구요.
<?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 = '<img src="'.$thumb['src'].'" alt="'.$thumb['alt'].'" width="'.$board['bo_gallery_width'].'" height="'.$board['bo_gallery_height'].'" class="list_img">';
} else {
$img_content = '<img src="'.$board_skin_url.'/img/noimage.gif" width="'.$board['bo_gallery_width'].'" height="'.$board['bo_gallery_height'].'" class="list_img">';
}
echo $img_content;
}
?>
간단한줄 알았는데 저같은 초보는 이리 저리 수정해봐도 되지를 않더라구요.
아시는분 답변 좀 부탁드립니다.
감사합니다.
!-->
답변을 작성하시기 전에 로그인 해주세요.