diff options
-rw-r--r-- | themes/chameleon/chameleon.theme | 4 | ||||
-rw-r--r-- | themes/garland/node.tpl.php | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/themes/chameleon/chameleon.theme b/themes/chameleon/chameleon.theme index 3e72f8097..0253eec06 100644 --- a/themes/chameleon/chameleon.theme +++ b/themes/chameleon/chameleon.theme @@ -139,8 +139,8 @@ function chameleon_node($node, $teaser = 0, $page = 0) { } $terms = ''; - if (!empty($node->content['links']['taxonomy'])) { - $terms = drupal_render($node->content['links']['taxonomy']); + if (!empty($node->content['links']['terms'])) { + $terms = drupal_render($node->content['links']['terms']); } $links = ''; diff --git a/themes/garland/node.tpl.php b/themes/garland/node.tpl.php index b227d86c7..595bd6b85 100644 --- a/themes/garland/node.tpl.php +++ b/themes/garland/node.tpl.php @@ -19,7 +19,7 @@ <div class="clear-block"> <div class="meta"> - <?php if ($taxonomy): ?> + <?php if ($terms): ?> <div class="terms"><?php print $terms ?></div> <?php endif;?> </div> |