주문서 비밀번호 관련 코드 수정

This commit is contained in:
chicpro
2015-05-13 16:48:11 +09:00
parent 82cf43b4ea
commit 32f3bd1eaf
4 changed files with 4 additions and 4 deletions

View File

@ -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');

View File

@ -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)

View File

@ -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');

View File

@ -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)