인증을 사용하는 게시판의 최신글을 추출하지 않도록 수정

This commit is contained in:
chicpro
2014-03-24 14:50:04 +09:00
parent c2f6a8fc22
commit d9aa817221
4 changed files with 24 additions and 4 deletions

View File

@ -10,7 +10,13 @@ include_once(G5_MOBILE_PATH.'/_head.php');
<!-- 메인화면 최신글 시작 -->
<?php
// 최신글
$sql = " select bo_table, bo_subject from {$g5[board_table]} where gr_id = '{$gr_id}' and bo_list_level <= '{$member[mb_level]}' and bo_device <> 'pc' order by bo_table ";
$sql = " select bo_table, bo_subject
from {$g5[board_table]}
where gr_id = '{$gr_id}'
and bo_list_level <= '{$member[mb_level]}'
and bo_device <> 'pc'
and bo_use_cert = ''
order by bo_table ";
$result = sql_query($sql);
for ($i=0; $row=sql_fetch_array($result); $i++) {
// 이 함수가 바로 최신글을 추출하는 역할을 합니다.