Merge branch 'master' of github.com:gnuboard/g4s
|
Before Width: | Height: | Size: 154 B After Width: | Height: | Size: 107 B |
|
Before Width: | Height: | Size: 102 B After Width: | Height: | Size: 97 B |
|
Before Width: | Height: | Size: 114 B After Width: | Height: | Size: 145 B |
|
Before Width: | Height: | Size: 215 B After Width: | Height: | Size: 104 B |
|
Before Width: | Height: | Size: 71 B After Width: | Height: | Size: 71 B |
|
Before Width: | Height: | Size: 80 B After Width: | Height: | Size: 77 B |
|
Before Width: | Height: | Size: 80 B After Width: | Height: | Size: 97 B |
@ -119,12 +119,17 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||
|
||||
<?
|
||||
// 파일 출력
|
||||
for ($i=0; $i<=count($view['file']); $i++) {
|
||||
if ($view['file'][$i]['view']) {
|
||||
if ($i == 0) echo "<div id=\"bo_v_img\">";
|
||||
echo $view['file'][$i]['view'];
|
||||
if ($i == 0) echo "</div>";
|
||||
$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 "</div>\n";
|
||||
}
|
||||
?>
|
||||
|
||||
@ -193,4 +198,4 @@ function view_image_resize()
|
||||
});
|
||||
}
|
||||
</script>
|
||||
<!-- 게시글 보기 끝 -->
|
||||
<!-- 게시글 보기 끝 -->
|
||||
|
||||
@ -39,7 +39,7 @@ var char_max = parseInt(<?=$comment_max?>); // 최대
|
||||
|
||||
<!-- 댓글 출력 -->
|
||||
<p>
|
||||
<? if (strstr($list[$i]['wr_option'], "secret")) echo "<img src=\"\" alt=\"비밀글\"><br>";?>
|
||||
<? if (strstr($list[$i]['wr_option'], "secret")) echo "<img src=\"".$board_skin_url."/img/icon_secret.gif\" alt=\"비밀글\">";?>
|
||||
<?=$str?>
|
||||
</p>
|
||||
|
||||
|
||||