사용자: 게시판스킨 읽기에서 비회원일 때도 추천, 비추천 나오도록 #289 에 따른 처리

This commit is contained in:
whitedot
2013-02-22 17:21:54 +09:00
parent 2240af9acb
commit 3d8db1a30f
2 changed files with 3 additions and 2 deletions

View File

@ -541,6 +541,7 @@ fieldset button {padding:0 15px;height:24px;border:0;background:#333;color:#fff;
#bo_v_act {margin-bottom:30px;text-align:center}
#bo_v_act a {margin-right:5px;vertical-align:top}
#bo_v_act span {display:inline-block;margin-right:5px;padding:0 10px;height:23px;border:1px solid #ccc !important;background:#fafafa !important;color:#000 !important;text-decoration:none !important;line-height:2.15em;vertical-align:top}
#bo_v_act strong {color:#000}
#bo_v form {padding-top:20px}

View File

@ -151,8 +151,8 @@ include_once(G4_LIB_PATH.'/thumbnail.lib.php');
if($board['bo_use_good'] || $board['bo_use_nogood']) {
?>
<div id="bo_v_act">
<? if($board['bo_use_good']) { ?><strong><?=number_format($view['wr_good'])?></strong><? } ?>
<? if($board['bo_use_nogood']) { ?><strong><?=number_format($view['wr_nogood'])?></strong><? } ?>
<? if($board['bo_use_good']) { ?><span>추천 <strong><?=number_format($view['wr_good'])?></strong></span><? } ?>
<? if($board['bo_use_nogood']) { ?><span>비추천 <strong><?=number_format($view['wr_nogood'])?></strong></span><? } ?>
</div>
<?
}