From c2f6a8fc2201cade69a141c84a8e034b198bae4f Mon Sep 17 00:00:00 2001 From: chicpro Date: Mon, 24 Mar 2014 14:39:57 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=EA=B2=8C=EC=8B=9C=ED=8C=90=20=EB=A6=AC?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8=20=EC=A0=91=EA=B7=BC=EC=8B=9C=20=EC=9D=B8?= =?UTF-8?q?=EC=A6=9D=20=EC=97=AC=EB=B6=80=20=EC=B2=B4=ED=81=AC=20=EC=BD=94?= =?UTF-8?q?=EB=93=9C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bbs/board.php | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/bbs/board.php b/bbs/board.php index 24fdaf54c..31e69fa53 100644 --- a/bbs/board.php +++ b/bbs/board.php @@ -145,6 +145,30 @@ if (isset($wr_id) && $wr_id) { alert('목록을 볼 권한이 없습니다.\\n\\n회원이시라면 로그인 후 이용해 보십시오.', './login.php?'.$qstr.'&url='.urlencode(G5_BBS_URL.'/board.php?bo_table='.$bo_table.($qstr?'&':''))); } + // 본인확인을 사용한다면 + if ($config['cf_cert_use'] && !$is_admin) { + // 인증된 회원만 가능 + if ($board['bo_use_cert'] != '' && $is_guest) { + alert('이 게시판은 본인확인 하신 회원님만 글읽기가 가능합니다.\\n\\n회원이시라면 로그인 후 이용해 보십시오.', './login.php?wr_id='.$wr_id.$qstr.'&url='.urlencode(G5_BBS_URL.'/board.php?bo_table='.$bo_table.'&wr_id='.$wr_id.$qstr)); + } + + if ($board['bo_use_cert'] == 'cert' && !$member['mb_certify']) { + alert('이 게시판은 본인확인 하신 회원님만 글읽기가 가능합니다.\\n\\n회원정보 수정에서 본인확인을 해주시기 바랍니다.', G5_URL); + } + + if ($board['bo_use_cert'] == 'adult' && !$member['mb_adult']) { + alert('이 게시판은 본인확인으로 성인인증 된 회원님만 글읽기가 가능합니다.\\n\\n현재 성인인데 글읽기가 안된다면 회원정보 수정에서 본인확인을 다시 해주시기 바랍니다.', G5_URL); + } + + if ($board['bo_use_cert'] == 'hp-cert' && $member['mb_certify'] != 'hp') { + alert('이 게시판은 휴대폰 본인확인 하신 회원님만 글읽기가 가능합니다.\\n\\n회원정보 수정에서 휴대폰 본인확인을 해주시기 바랍니다.', G5_URL); + } + + if ($board['bo_use_cert'] == 'hp-adult' && (!$member['mb_adult'] || $member['mb_certify'] != 'hp')) { + alert('이 게시판은 휴대폰 본인확인으로 성인인증 된 회원님만 글읽기가 가능합니다.\\n\\n현재 성인인데 글읽기가 안된다면 회원정보 수정에서 휴대폰 본인확인을 다시 해주시기 바랍니다.', G5_URL); + } + } + if (!isset($page) || (isset($page) && $page == 0)) $page = 1; $g5['title'] = $board['bo_subject']." ".$page." 페이지"; From d9aa817221e1cc701b81399b2a98c76792e5b8c4 Mon Sep 17 00:00:00 2001 From: chicpro Date: Mon, 24 Mar 2014 14:50:04 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=EC=9D=B8=EC=A6=9D=EC=9D=84=20=EC=82=AC?= =?UTF-8?q?=EC=9A=A9=ED=95=98=EB=8A=94=20=EA=B2=8C=EC=8B=9C=ED=8C=90?= =?UTF-8?q?=EC=9D=98=20=EC=B5=9C=EC=8B=A0=EA=B8=80=EC=9D=84=20=EC=B6=94?= =?UTF-8?q?=EC=B6=9C=ED=95=98=EC=A7=80=20=EC=95=8A=EB=8F=84=EB=A1=9D=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bbs/group.php | 8 +++++++- index.php | 6 +++++- mobile/group.php | 8 +++++++- mobile/index.php | 6 +++++- 4 files changed, 24 insertions(+), 4 deletions(-) diff --git a/bbs/group.php b/bbs/group.php index e0fb16730..833155aac 100644 --- a/bbs/group.php +++ b/bbs/group.php @@ -18,7 +18,13 @@ include_once('./_head.php'); 'mobile' order by bo_order "; +$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 <> 'mobile' + and bo_use_cert = '' + order by bo_order "; $result = sql_query($sql); for ($i=0; $row=sql_fetch_array($result); $i++) { $lt_style = ""; diff --git a/index.php b/index.php index 32e563fe8..fb648761e 100644 --- a/index.php +++ b/index.php @@ -22,7 +22,11 @@ include_once('./_head.php'); 'mobile' order by b.gr_order, a.bo_order "; +$sql = " select bo_table + from `{$g5['board_table']}` a left join `{$g5['group_table']}` b on (a.gr_id=b.gr_id) + where a.bo_device <> 'mobile' + and a.bo_use_cert = '' + order by b.gr_order, a.bo_order "; $result = sql_query($sql); for ($i=0; $row=sql_fetch_array($result); $i++) { if ($i%2==1) $lt_style = "margin-left:20px"; diff --git a/mobile/group.php b/mobile/group.php index 6cb3aaee7..9ad4d6e51 100644 --- a/mobile/group.php +++ b/mobile/group.php @@ -10,7 +10,13 @@ include_once(G5_MOBILE_PATH.'/_head.php'); '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++) { // 이 함수가 바로 최신글을 추출하는 역할을 합니다. diff --git a/mobile/index.php b/mobile/index.php index 514a3223e..412e66457 100644 --- a/mobile/index.php +++ b/mobile/index.php @@ -7,7 +7,11 @@ include_once(G5_MOBILE_PATH.'/_head.php'); 'pc' order by b.gr_order, a.bo_order "; +$sql = " select bo_table + from `{$g5['board_table']}` a left join `{$g5['group_table']}` b on (a.gr_id=b.gr_id) + where a.bo_device <> 'pc' + and a.bo_use_cert = '' + order by b.gr_order, a.bo_order "; $result = sql_query($sql); for ($i=0; $row=sql_fetch_array($result); $i++) { // 이 함수가 바로 최신글을 추출하는 역할을 합니다.