PM-772 al crear un evento intermediate message nos muestra un warning en el frame SOLVED

This commit is contained in:
Julio Cesar Laura
2014-10-22 16:37:01 -04:00
parent c0312f739c
commit caf29463d8

View File

@@ -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;