summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2012-07-07 13:22:59 -0700
committerwebchick <webchick@24967.no-reply.drupal.org>2012-07-07 13:22:59 -0700
commitb7ad8c6c9bdb044beb8fed933e95b5f385d933a2 (patch)
treec49a2067eec80ac57a54a7e96d6aafe164e51e36 /themes
parent1e4c645282fc84d5ee2fc0b27af11ba360ce71d2 (diff)
downloadbrdo-b7ad8c6c9bdb044beb8fed933e95b5f385d933a2.tar.gz
brdo-b7ad8c6c9bdb044beb8fed933e95b5f385d933a2.tar.bz2
Issue #1637480 by Wim Leers: Fixed Bartik's taxonomy term reference field theme override does not render the field attributes.
Diffstat (limited to 'themes')
-rw-r--r--themes/bartik/template.php2
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;
}