fix bug on new feature checkbox list form table
This commit is contained in:
parent
a6c5a247cd
commit
23eac58cc8
@ -923,7 +923,12 @@ class ExtraFields
|
||||
}
|
||||
elseif ($type == 'chkbxlst')
|
||||
{
|
||||
$value_arr = explode(',', $value);
|
||||
if (is_array($value)) {
|
||||
$value_arr = $value;
|
||||
}
|
||||
else {
|
||||
$value_arr = explode(',', $value);
|
||||
}
|
||||
|
||||
if (is_array($param['options'])) {
|
||||
$param_list = array_keys($param['options']);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user