mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 08:41:39 +09:00
Fix insertDocument query error when email_address is null #2620
This commit is contained in:
parent
14ad25abd2
commit
6c76ab613a
1 changed files with 1 additions and 1 deletions
|
|
@ -708,7 +708,7 @@ class DocumentController extends Document
|
|||
$obj->user_id = htmlspecialchars_decode($logged_info->user_id);
|
||||
$obj->user_name = htmlspecialchars_decode($logged_info->user_name);
|
||||
$obj->nick_name = htmlspecialchars_decode($logged_info->nick_name);
|
||||
$obj->email_address = $logged_info->email_address;
|
||||
$obj->email_address = $logged_info->email_address ?? '';
|
||||
$obj->homepage = $logged_info->homepage;
|
||||
}
|
||||
if(!$logged_info->member_srl && !$manual_inserted && !$isRestore)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue