From 86e550895cc96a6b77905fd11e2cf6e8d785ccfa Mon Sep 17 00:00:00 2001 From: thisgun Date: Thu, 29 Aug 2019 16:21:57 +0900 Subject: [PATCH] =?UTF-8?q?=EC=98=81=EC=B9=B4=ED=8A=B8=20=EB=B3=B8?= =?UTF-8?q?=EC=9D=B8=EC=9D=B8=EC=A6=9D=20=EC=B7=A8=EC=95=BD=EC=A0=90(KVE-2?= =?UTF-8?q?019-1301)=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shop/cartupdate.php | 14 ++++++++++++++ shop/wishupdate.php | 7 +++++++ 2 files changed, 21 insertions(+) diff --git a/shop/cartupdate.php b/shop/cartupdate.php index c4db8ce1f..bcf52f4bb 100644 --- a/shop/cartupdate.php +++ b/shop/cartupdate.php @@ -43,6 +43,13 @@ if($act == "buy") if($ct_chk) { $it_id = $_POST['it_id'][$i]; + // 본인인증, 성인인증체크 + if(!$is_admin) { + $msg = shop_member_cert_check($it_id, 'item'); + if($msg) + alert($msg, G5_SHOP_URL); + } + // 주문 상품의 재고체크 $sql = " select ct_qty, it_name, ct_option, io_id, io_type from {$g5['g5_shop_cart_table']} @@ -137,6 +144,13 @@ else // 장바구니에 담기 alert('수량은 1 이상 입력해 주십시오.'); } + // 본인인증, 성인인증체크 + if(!$is_admin) { + $msg = shop_member_cert_check($it_id, 'item'); + if($msg) + alert($msg, G5_SHOP_URL); + } + // 상품정보 $sql = " select * from {$g5['g5_shop_item_table']} where it_id = '$it_id' "; $it = sql_fetch($sql); diff --git a/shop/wishupdate.php b/shop/wishupdate.php index ebea16926..7e98cf890 100644 --- a/shop/wishupdate.php +++ b/shop/wishupdate.php @@ -26,6 +26,13 @@ else if(!$it_id) alert('상품코드가 올바르지 않습니다.', G5_SHOP_URL); + + // 본인인증, 성인인증체크 + if(!$is_admin) { + $msg = shop_member_cert_check($it_id, 'item'); + if($msg) + alert($msg, G5_SHOP_URL); + } // 상품정보 체크 $sql = " select it_id from {$g5['g5_shop_item_table']} where it_id = '$it_id' ";