mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 03:01:43 +09:00
Fix #1563 missing array check in skin_config.html
This commit is contained in:
parent
f07afe9c58
commit
91a934b7bf
1 changed files with 1 additions and 1 deletions
|
|
@ -101,7 +101,7 @@
|
|||
</select>
|
||||
|
||||
<!--// checkbox -->
|
||||
<label cond="$val->type == 'checkbox'" loop="$val->options => $k, $v" for="ch_{$key}_{$k}" class="x_inline"><input type="checkbox" name="{$val->name}[]" value="{$v->value}" id="ch_{$key}_{$k}" checked="checked"|cond="@in_array($v->value, $val->value)" class="checkbox" /> {$v->title}</label>
|
||||
<label cond="$val->type == 'checkbox'" loop="$val->options => $k, $v" for="ch_{$key}_{$k}" class="x_inline"><input type="checkbox" name="{$val->name}[]" value="{$v->value}" id="ch_{$key}_{$k}" checked="checked"|cond="is_array($val->value) && in_array($v->value, $val->value)" class="checkbox" /> {$v->title}</label>
|
||||
|
||||
<!--// radio -->
|
||||
<label cond="$val->type == 'radio'" for="ch_{$key}_{$k}" loop="$val->options => $k, $v" class="x_inline"><input type="radio" name="{$val->name}" value="{$v->value}" id="ch_{$key}_{$k}" checked="checked"|cond="$v->value==$val->value" /> {$v->title}</label>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue