Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit c3f1a80

Browse files
committed
Fixes zendframework#637 - List-separator attribute is not being unset for MultiCheckboxes due to a typo
1 parent ebf608f commit c3f1a80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/Zend/Form/Decorator/ViewHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ public function render($content)
246246

247247
// Check list separator
248248
if (isset($attribs['listsep'])
249-
&& in_array($helper, array('formMulticheckbox', 'formRadio', 'formSelect'))
249+
&& in_array($helper, array('formMultiCheckbox', 'formRadio', 'formSelect'))
250250
) {
251251
$listsep = $attribs['listsep'];
252252
unset($attribs['listsep']);

0 commit comments

Comments
 (0)