Fix warnings in PHP 8.x

This commit is contained in:
Kijin Sung 2023-10-05 15:30:37 +09:00
parent 04546d8b0f
commit 0be8f6a441
3 changed files with 7 additions and 7 deletions

View file

@ -136,7 +136,7 @@
<label class="x_control-label">{$lang->member_group}</label>
<div class="x_controls">
<label for="group_{$key}" class="x_inline" loop="$group_list => $key,$val">
<input type="checkbox" name="group_srl_list[]" value="{$key}" id="group_{$key}" checked="checked"|cond="$member_info->group_list[$key]" />
<input type="checkbox" name="group_srl_list[]" value="{$key}" id="group_{$key}" checked="checked"|cond="!empty($member_info->group_list[$key])" />
{$val->title}
</label>
</div>