mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 18:21:39 +09:00
Fix #2283 warning/notice when member extra var is not set for any given member
This commit is contained in:
parent
04537bfb26
commit
cac0ea171c
1 changed files with 1 additions and 1 deletions
|
|
@ -903,7 +903,7 @@ class MemberModel extends Member
|
|||
foreach($extend_form_list as $srl => $item)
|
||||
{
|
||||
$column_name = $item->column_name;
|
||||
$value = $member_info->{$column_name};
|
||||
$value = $member_info->{$column_name} ?? null;
|
||||
|
||||
// Change values depening on the type of extend form
|
||||
switch($item->column_type)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue