사용자: 게시판스킨 읽기 제목 분류 없을 때 공백 제거, 하단 인기검색어 클릭시 이동 링크 수정

This commit is contained in:
whitedot
2013-01-29 10:03:41 +09:00
parent 71535f38e0
commit 0c89594faa
2 changed files with 2 additions and 4 deletions

View File

@ -6,9 +6,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
<div id="bo_v" class="cbg">
<h1 id="bo_v_h1">
<? if ($is_category) { // 분류가 있다면?>
<span><?=($category_name ? "{$view['ca_name']} " : "");?></span>
<? } // 분류 출력 끝 ?>
<? if ($category_name) { // 분류가 지정되었다면 ?><span><?=($category_name ? "{$view['ca_name']} " : "");?></span><? } // 분류 출력 끝 ?>
<?=cut_hangul_last(get_text($view['wr_subject'])) // 글제목 출력?>
</h1>

View File

@ -7,7 +7,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
<h2>인기검색어</h2>
<ul>
<? for ($i=0; $i<count($list); $i++) { ?>
<li><a href="<?=$g4['bbs_path']?>/search.php?sfl=wr_subject&amp;sop=and&amp;stx=<?=urlencode($list[$i]['pp_word'])?>"><?=$list[$i]['pp_word']?></a></li>
<li><a href="<?=$g4['url']?>/bbs/search.php?sfl=wr_subject&amp;sop=and&amp;stx=<?=urlencode($list[$i]['pp_word'])?>"><?=$list[$i]['pp_word']?></a></li>
<? } ?>
</ul>
</div>