Zend changing validation error behavior: wrapping element in another tag
I've set a validator for the email so it can't be empty. This is the markup of the usual form that zend_form generates: <dt id="email-label"><label class="required" for="email">Email</label></dt> <dd id="email-element"> <input type="text" value="" id="email" name="email"> </dd> When validation fails, zend_form adds a new ul class...