diff --git a/src/View/Helper/FormHelper.php b/src/View/Helper/FormHelper.php index a9dffd68..1f7b86f7 100644 --- a/src/View/Helper/FormHelper.php +++ b/src/View/Helper/FormHelper.php @@ -31,7 +31,6 @@ class FormHelper extends Helper 'help' => '
{{content}}
', 'inputContainer' => '
{{content}}{{help}}
', 'inputContainerError' => '
{{content}}{{error}}{{help}}
', - 'multipleCheckboxWrapper' => '
{{label}}
', 'radioInlineFormGroup' => '{{label}}
{{input}}
', 'radioNestingLabel' => '
{{hidden}}{{input}}{{text}}
', 'staticControl' => '

{{content}}

', @@ -220,7 +219,6 @@ public function input($fieldName, array $options = []) break; case 'select': if (isset($options['multiple']) && $options['multiple'] === 'checkbox') { - $options['templates']['checkboxWrapper'] = $this->templater()->get('multipleCheckboxWrapper'); $options['type'] = 'multicheckbox'; } break;