[팁] 게시판에서 새글 이미지가 않뜨는 현상해결하자 정보
[팁] 게시판에서 새글 이미지가 않뜨는 현상해결하자
본문
리스트 스킨파일에서 새글이 나오는 부분을 아래로 수정
스킨의 경로는
club - skin - board - 게시판 이름 - list.skin.php
##################################
$list[$i]['icon_new2'] = "";
if ($list[$i]['wr_datetime'] >= date("Y-m-d H:i:s", $g4['server_time'] - ($board['bo_new'] * 3600)))
$list[$i]['icon_new2'] = "<img src='$cb_board_skin_path/img/icon_new.gif' align='absmiddle'>";
$list[$i]['icon_hot2'] = "";
if ($list[$i]['wr_hit'] >= $board['bo_hot'])
$list[$i]['icon_hot2'] = "<img src='$cb_board_skin_path/img/icon_hot.gif' align='absmiddle'>";
$list[$i]['icon_secret2'] = "";
if (strstr($list[$i]['wr_option'], "secret"))
$list[$i]['icon_secret2'] = "<img src='$cb_board_skin_path/img/icon_secret.gif' align='absmiddle'>";
// 가변 파일
$list[$i]['file'] = get_file($board['bo_table'], $list[$i]['wr_id']);
if ($list[$i]['file']['count'])
$list[$i]['icon_file2'] = "<img src='$cb_board_skin_path/img/icon_file.gif' align='absmiddle'>";
echo " " . $list[$i][icon_new2];
echo " " . $list[$i][icon_file2];
echo " " . $list[$i][icon_link];
echo " " . $list[$i][icon_hot2];
echo " " . $list[$i][icon_secret2];
스킨의 경로는
club - skin - board - 게시판 이름 - list.skin.php
##################################
$list[$i]['icon_new2'] = "";
if ($list[$i]['wr_datetime'] >= date("Y-m-d H:i:s", $g4['server_time'] - ($board['bo_new'] * 3600)))
$list[$i]['icon_new2'] = "<img src='$cb_board_skin_path/img/icon_new.gif' align='absmiddle'>";
$list[$i]['icon_hot2'] = "";
if ($list[$i]['wr_hit'] >= $board['bo_hot'])
$list[$i]['icon_hot2'] = "<img src='$cb_board_skin_path/img/icon_hot.gif' align='absmiddle'>";
$list[$i]['icon_secret2'] = "";
if (strstr($list[$i]['wr_option'], "secret"))
$list[$i]['icon_secret2'] = "<img src='$cb_board_skin_path/img/icon_secret.gif' align='absmiddle'>";
// 가변 파일
$list[$i]['file'] = get_file($board['bo_table'], $list[$i]['wr_id']);
if ($list[$i]['file']['count'])
$list[$i]['icon_file2'] = "<img src='$cb_board_skin_path/img/icon_file.gif' align='absmiddle'>";
echo " " . $list[$i][icon_new2];
echo " " . $list[$i][icon_file2];
echo " " . $list[$i][icon_link];
echo " " . $list[$i][icon_hot2];
echo " " . $list[$i][icon_secret2];
추천
0
0
댓글 전체