diff --git a/gulliver/system/class.xmlform.php b/gulliver/system/class.xmlform.php index 2d4e2aea9..bdd08eb9f 100755 --- a/gulliver/system/class.xmlform.php +++ b/gulliver/system/class.xmlform.php @@ -3746,7 +3746,11 @@ class XmlForm_Field_Listbox extends XmlForm_Field $arrayAux = array(); foreach ($value as $index2 => $value2) { - $arrayAux[] = $value2 . ""; + if (!is_array($value2)) { + $arrayAux[] = $value2 . ""; + } else { + $arrayAux[] = ""; + } } $value = $arrayAux;