그누보드 [G5] 글쓴이 이름클릭 레이어 팝업메뉴 & 회원아이콘 보이기
페이지 정보
본문
그누보드 5는 사이드 뷰를 설정하지 않고, 회원아이콘을 출력하기 위해서 약간의 코드 변경이 필요합니다.
그누보드4에서는 $board[bo_use_sideview] 가 디폴트로 null 로 처리되었으나
그누보드5에서는 $board[bo_use_sideview] 가 디폴트 값이 0 입니다.
list.skin.php에서 이름처리하는 부분을 다음처럼 처리하십시오.
<?
$tmp_name = "";
//if($list[$i][mb_id] && !$board[bo_use_sideview]) { // 그누보드4
if($list[$i][mb_id]) { // 그누보드5
if ($config[cf_use_member_icon]) {
$mb_dir = substr($list[$i][mb_id],0,2);
$icon_file = "$g4[path]/data/member/$mb_dir/{$list[$i][mb_id]}.gif";
if (file_exists($icon_file)) {
$width = $config[cf_member_icon_width];
$height = $config[cf_member_icon_height];
$tmp_name = "<img src='$icon_file' width='$width' height='$height' align='absmiddle' border='0'>";
}
}
}
?>
<td align="center"><?=$tmp_name?><?=$list[$i][name]?></td>
그누보드4에서는 $board[bo_use_sideview] 가 디폴트로 null 로 처리되었으나
그누보드5에서는 $board[bo_use_sideview] 가 디폴트 값이 0 입니다.
list.skin.php에서 이름처리하는 부분을 다음처럼 처리하십시오.
<?
$tmp_name = "";
//if($list[$i][mb_id] && !$board[bo_use_sideview]) { // 그누보드4
if($list[$i][mb_id]) { // 그누보드5
if ($config[cf_use_member_icon]) {
$mb_dir = substr($list[$i][mb_id],0,2);
$icon_file = "$g4[path]/data/member/$mb_dir/{$list[$i][mb_id]}.gif";
if (file_exists($icon_file)) {
$width = $config[cf_member_icon_width];
$height = $config[cf_member_icon_height];
$tmp_name = "<img src='$icon_file' width='$width' height='$height' align='absmiddle' border='0'>";
}
}
}
?>
<td align="center"><?=$tmp_name?><?=$list[$i][name]?></td>
댓글목록
등록된 댓글이 없습니다.