[php5_debug] updateArray문의 컬럼명 따옴표 누락 일괄 수정반영

This commit is contained in:
2018-01-17 13:21:19 +09:00
parent a9fa1b9d37
commit 80368dd140
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -19,8 +19,8 @@ if($member['PW'] != $pw) {
$response['msg'] = '실패: 현재 비밀번호가 일치하지 않습니다.';
} else {
$DB->UpdateArray('MEMBER', array(
QUIT => 'Y',
REG_DATE=> _Time::DatetimeNow()
'QUIT' => 'Y',
'REG_DATE'=> _Time::DatetimeNow()
), "NO='{$SESSION->NoMember()}'");