ZF-12191: Zend_Form_Decorator_DtDdWrapper should use element id instead of element name to build the id for dt & dd tag

Description

not good: $elementName = $this->getElement()->getName(); better: $elementId = $this->getElement()->getId();

return '

' . $dtLabel . '' . '' . $content . '';

Zend_Form_Decorator_DtDdWrapper should use element id instead of element name to build the id for dt & dd tag to avoid multiple ids which have the same id in case of more than one form on a single page.

Comments

No comments to display