Merged in julceslau/processmaker (pull request #1025)

PM-772 al crear un evento intermediate message nos muestra un warning en el frame SOLVED
This commit is contained in:
Julio Cesar Laura Avendaño
2014-10-22 16:45:23 -04:00

View File

@@ -3746,7 +3746,11 @@ class XmlForm_Field_Listbox extends XmlForm_Field
$arrayAux = array(); $arrayAux = array();
foreach ($value as $index2 => $value2) { foreach ($value as $index2 => $value2) {
$arrayAux[] = $value2 . ""; if (!is_array($value2)) {
$arrayAux[] = $value2 . "";
} else {
$arrayAux[] = "";
}
} }
$value = $arrayAux; $value = $arrayAux;