Breaking: #82093 - EXT:form Partials/Field/Field.html has changed
See forge#82093
Description
To let the form field viewhelper attribute errorClass work, the partial
EXT: has been changed.
<f:form.validationResults for="{element.identifier}">        
        Copied!
    
has been changed to
<f:form.validationResults for="{element.rootForm.identifier}.{element.identifier}">        
        Copied!
    
Impact
Users who overwrite this partial by its own partial have to make adjustments.
Otherwise no has- class will be rendered in case of form validation errors
into the parents 
        <div class="form- and the 
        <span class="help-
content will not be rendered.
Affected Installations
All installations with overwritten partial EXT:
Migration
Change the partial Field/ within your site package.
<f:form.validationResults for="{element.identifier}">        
        Copied!
    
change to
<f:form.validationResults for="{element.rootForm.identifier}.{element.identifier}">        
        Copied!