SMS관리 휴대폰관리 페이지 PHP특정버전에서 오류나는 문제 수정

This commit is contained in:
thisgun
2023-01-25 12:30:13 +09:00
parent 6fa0f0e704
commit f61d6cc09a
2 changed files with 16 additions and 9 deletions

View File

@ -33,7 +33,16 @@ if ($w == 'u' && is_numeric($bk_no)) {
$g5['title'] .= '수정';
}
else {
$write = array('bg_no' => (int) $bg_no);
$write = array(
'bg_no' => (int) $bg_no,
'bk_no' => 0,
'mb_id' => '',
'bk_name' => '',
'bk_hp' => '',
'bk_memo' => '',
'bk_receipt' => 1,
'bk_datetime' => ''
);
$g5['title'] .= '추가';
}