mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-22 05:15:29 +09:00
Fix PHP warning about undefined properties
This commit is contained in:
parent
f8336281c1
commit
d0cdcb5d2a
2 changed files with 10 additions and 4 deletions
|
|
@ -159,8 +159,8 @@ class memberView extends member
|
|||
}
|
||||
else
|
||||
{
|
||||
$item->title = $extendFormInfo[$formInfo->member_join_form_srl]->column_title;
|
||||
$orgValue = $extendFormInfo[$formInfo->member_join_form_srl]->value;
|
||||
$item->title = $extendFormInfo[$formInfo->member_join_form_srl]->column_title ?? null;
|
||||
$orgValue = $extendFormInfo[$formInfo->member_join_form_srl]->value ?? null;
|
||||
if($formInfo->type=='tel' && is_array($orgValue))
|
||||
{
|
||||
$item->value = implode('-', $orgValue);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue