diff --git a/mobile/shop/orderformupdate.php b/mobile/shop/orderformupdate.php index 4a9d8ed98..c66a8c9ef 100644 --- a/mobile/shop/orderformupdate.php +++ b/mobile/shop/orderformupdate.php @@ -394,7 +394,7 @@ if($tno) { if ($is_member) $od_pwd = $member['mb_password']; else - $od_pwd = sql_password($_POST['od_pwd']); + $od_pwd = get_encrypt_string($_POST['od_pwd']); // 주문번호를 얻는다. $od_id = get_session('ss_order_id'); diff --git a/mobile/shop/orderinquiry.php b/mobile/shop/orderinquiry.php index c26b604a4..6c32e3aed 100644 --- a/mobile/shop/orderinquiry.php +++ b/mobile/shop/orderinquiry.php @@ -3,7 +3,7 @@ include_once('./_common.php'); define("_ORDERINQUIRY_", true); -$od_pwd = sql_password($od_pwd); +$od_pwd = get_encrypt_string($od_pwd); // 회원인 경우 if ($is_member) diff --git a/shop/orderformupdate.php b/shop/orderformupdate.php index 0598614da..fe02daf88 100644 --- a/shop/orderformupdate.php +++ b/shop/orderformupdate.php @@ -388,7 +388,7 @@ if($tno) { if ($is_member) $od_pwd = $member['mb_password']; else - $od_pwd = sql_password($_POST['od_pwd']); + $od_pwd = get_encrypt_string($_POST['od_pwd']); // 주문번호를 얻는다. $od_id = get_session('ss_order_id'); diff --git a/shop/orderinquiry.php b/shop/orderinquiry.php index bd23708d4..cb5192a86 100644 --- a/shop/orderinquiry.php +++ b/shop/orderinquiry.php @@ -8,7 +8,7 @@ if (G5_IS_MOBILE) { define("_ORDERINQUIRY_", true); -$od_pwd = sql_password($od_pwd); +$od_pwd = get_encrypt_string($od_pwd); // 회원인 경우 if ($is_member)