From caf29463d874c4dea7e925606fa1279fb8e97a08 Mon Sep 17 00:00:00 2001 From: Julio Cesar Laura Date: Wed, 22 Oct 2014 16:37:01 -0400 Subject: [PATCH] PM-772 al crear un evento intermediate message nos muestra un warning en el frame SOLVED --- gulliver/system/class.xmlform.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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;