fix bug on new feature checkbox list form table

This commit is contained in:
Florian HENRY 2015-05-18 13:13:50 +02:00
parent a6c5a247cd
commit 23eac58cc8

View File

@ -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']);