기본 갤러리 본문에 이미지 두개 연결되서 보이는 현상
본문
답변 1
skin/gallery/view.skin.php 중에서...
<?php
// 파일 출력
$v_img_count = count($view['file']);
if($v_img_count) {
echo "<div id=\"bo_v_img\">\n";
for ($i=0; $i<=count($view['file']); $i++) {
if ($view['file'][$i]['view']) {
//echo $view['file'][$i]['view'];
echo get_view_thumbnail($view['file'][$i]['view'])."<br>";
}
}
echo "</div>\n";
}
?>
답변을 작성하시기 전에 로그인 해주세요.