From 40f3b9d934ca1d2b78ba951221446f134270bcf7 Mon Sep 17 00:00:00 2001 From: Marco Antonio Nina Date: Mon, 25 Feb 2013 15:27:30 -0400 Subject: [PATCH 1/2] 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 a5ff6fed6..7ad4e0ae9 100755 --- a/gulliver/system/class.xmlform.php +++ b/gulliver/system/class.xmlform.php @@ -3787,7 +3787,7 @@ class XmlForm_Field_CheckGroup extends XmlForm_Field } elseif ($this->mode === 'view') { $html = ''; foreach ($this->options as $optionName => $option) { - $html .= '
'; + $html .= '
'; $html .= ''; } return $html; From fe24c6ccbd734f302099cb8ac43f3458b2e8530c Mon Sep 17 00:00:00 2001 From: Marco Antonio Nina Date: Mon, 25 Feb 2013 17:09:29 -0400 Subject: [PATCH 2/2] 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 {