From fe24c6ccbd734f302099cb8ac43f3458b2e8530c Mon Sep 17 00:00:00 2001 From: Marco Antonio Nina Date: Mon, 25 Feb 2013 17:09:29 -0400 Subject: [PATCH] BUG 10885 Checkgroup submit problem SOLVED - Fields duplicated in form view types hidden and checkbox. - Was delete de name in field checkbox in form view. --- gulliver/system/class.xmlform.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulliver/system/class.xmlform.php b/gulliver/system/class.xmlform.php index 7ad4e0ae9..4c582c8da 100755 --- a/gulliver/system/class.xmlform.php +++ b/gulliver/system/class.xmlform.php @@ -3788,7 +3788,7 @@ class XmlForm_Field_CheckGroup extends XmlForm_Field $html = ''; foreach ($this->options as $optionName => $option) { $html .= '
'; - $html .= ''; + $html .= ''; } return $html; } else {