Skip to content
Snippets Groups Projects
Commit 4d060b88 authored by Angie Byron's avatar Angie Byron
Browse files

Issue #1637480 by Wim Leers: Fixed Bartik's taxonomy term reference field...

Issue #1637480 by Wim Leers: Fixed Bartik's taxonomy term reference field theme override does not render the field attributes.
parent 5789200b
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -146,7 +146,7 @@ function bartik_field__taxonomy_term_reference($variables) {
$output .= '</ul>';
// Render the top-level DIV.
$output = '<div class="' . $variables['classes'] . (!in_array('clearfix', $variables['classes_array']) ? ' clearfix' : '') . '">' . $output . '</div>';
$output = '<div class="' . $variables['classes'] . (!in_array('clearfix', $variables['classes_array']) ? ' clearfix' : '') . '"' . $variables['attributes'] .'>' . $output . '</div>';
return $output;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment