diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/node/node.css | 3 | ||||
-rw-r--r-- | modules/node/node.tpl.php | 21 |
2 files changed, 6 insertions, 18 deletions
diff --git a/modules/node/node.css b/modules/node/node.css index 073f023f1..07460c85e 100644 --- a/modules/node/node.css +++ b/modules/node/node.css @@ -24,6 +24,3 @@ td.revision-current { background: #ffc; } -.terms-inline { - display: inline; -} diff --git a/modules/node/node.tpl.php b/modules/node/node.tpl.php index 8867472ec..952f20a9d 100644 --- a/modules/node/node.tpl.php +++ b/modules/node/node.tpl.php @@ -16,7 +16,6 @@ * calling format_date() with the desired parameters on the $created variable. * - $name: Themed username of node author output from theme_username(). * - $node_url: Direct url of the current node. - * - $terms: the themed list of taxonomy term links output from theme_links(). * - $display_submitted: whether submission information should be displayed. * - $classes: String of classes that can be used to style contextually through * CSS. It can be manipulated through the variable $classes_array from @@ -88,20 +87,12 @@ <?php endif; ?> <?php print render($title_suffix); ?> - <?php if ($display_submitted || !empty($content['links']['terms'])): ?> - <div class="meta"> - <?php if ($display_submitted): ?> - <span class="submitted"> - <?php - print t('Submitted by !username on !datetime', - array('!username' => $name, '!datetime' => $date)); - ?> - </span> - <?php endif; ?> - - <?php if (!empty($content['links']['terms'])): ?> - <div class="terms terms-inline"><?php print render($content['links']['terms']); ?></div> - <?php endif; ?> + <?php if ($display_submitted): ?> + <div class="submitted"> + <?php + print t('Submitted by !username on !datetime', + array('!username' => $name, '!datetime' => $date)); + ?> </div> <?php endif; ?> |