ZF-2830: MultiCheckbox rendering duplicate braces
Description
Reproduce code:
$form = new Zend_Form();
$e = new Zend_Form_Element_MultiCheckbox('test');
$e->setLabel('Test');
$e->addMultiOption(1, 'A');
$e->addMultiOption(2, 'B');
$form->addElement($e);
echo $form->render(new Zend_View);
Expected content would include the following inputs:
Actual content includes:
Comments
Posted by Matthew Weier O'Phinney (matthew) on 2008-03-07T14:40:44.000+0000
Fixed in trunk and 1.5 release branch