Hello, another Question related to Zend_Form and Decorators :-)
I want to simply add an <br /> after an Element.
I use this Decorator:
public $elementDecorators = array(
'ViewHelper',
'Errors',
array( 'Label', array('class' => 'left' ) ),
array( 'HtmlTag', array( 'tag' => 'br', 'placement' => 'append' ) ),
);
But this appends <br></br> to my Element :-(
Where is my Error?
Thanks for your Help,
Stefan Sturm
