summaryrefslogtreecommitdiff
path: root/themes/bartik/template.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-12-14 01:04:27 +0000
committerDries Buytaert <dries@buytaert.net>2010-12-14 01:04:27 +0000
commite44834ef9c326d6de04e3ea392ede618d73a962d (patch)
tree2b8c12bae33452e2955256a822a840274e1ec993 /themes/bartik/template.php
parent3361b3bfc26c8deb23f439ff7ecf8db6b8df0845 (diff)
downloadbrdo-e44834ef9c326d6de04e3ea392ede618d73a962d.tar.gz
brdo-e44834ef9c326d6de04e3ea392ede618d73a962d.tar.bz2
- Patch #819996 by scor: fixed RDFa generation.
Diffstat (limited to 'themes/bartik/template.php')
-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 f3bc93b27..2867f6b5a 100644
--- a/themes/bartik/template.php
+++ b/themes/bartik/template.php
@@ -143,7 +143,7 @@ function bartik_field__taxonomy_term_reference($variables) {
// Render the items.
$output .= ($variables['element']['#label_display'] == 'inline') ? '<ul class="links inline">' : '<ul class="links">';
foreach ($variables['items'] as $delta => $item) {
- $output .= '<li class="taxonomy-term-reference-' . $delta . '">' . drupal_render($item) . '</li>';
+ $output .= '<li class="taxonomy-term-reference-' . $delta . '"' . $variables['item_attributes'][$delta] . '>' . drupal_render($item) . '</li>';
}
$output .= '</ul>';