diff options
-rw-r--r-- | themes/bartik/template.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/bartik/template.php b/themes/bartik/template.php index bdad570d1..7466e05ce 100644 --- a/themes/bartik/template.php +++ b/themes/bartik/template.php @@ -150,7 +150,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; } |