mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-01 00:02:21 +09:00
Fix #1363 회원 메모를 빈값으로 삭제 안되는 문제 고침
This commit is contained in:
parent
5a66bcab82
commit
46d7d3e8c4
2 changed files with 15 additions and 2 deletions
|
|
@ -112,6 +112,12 @@ class memberAdminController extends member
|
|||
}
|
||||
}
|
||||
|
||||
// 실제로 디비쿼리시 빈값이 없다면 해당 쿼리를 무시하고 업데이트 하기 때문에 메모의 내용이 삭제가 되지 않습니다.
|
||||
if(!$args->description)
|
||||
{
|
||||
$args->description = '';
|
||||
}
|
||||
|
||||
$oMemberController = getController('member');
|
||||
// Execute insert or update depending on the value of member_srl
|
||||
if(!$args->member_srl)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue