summaryrefslogtreecommitdiff
path: root/modules/forum/forum-icon.tpl.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules/forum/forum-icon.tpl.php')
-rw-r--r--modules/forum/forum-icon.tpl.php8
1 files changed, 3 insertions, 5 deletions
diff --git a/modules/forum/forum-icon.tpl.php b/modules/forum/forum-icon.tpl.php
index 4a43dd2ce..2b2cf3c10 100644
--- a/modules/forum/forum-icon.tpl.php
+++ b/modules/forum/forum-icon.tpl.php
@@ -9,19 +9,17 @@
* - $new_posts: Indicates whether or not the topic contains new posts.
* - $icon: The icon to display. May be one of 'hot', 'hot-new', 'new',
* 'default', 'closed', or 'sticky'.
+ * - $first_new: Indicates whether this is the first topic with new posts.
*
* @see template_preprocess_forum_icon()
* @see theme_forum_icon()
*/
?>
<div class="topic-status-<?php print $icon_class ?>" title="<?php print $icon_title ?>">
-<?php if ($new_posts): ?>
- <a id="new">
+<?php if ($first_new): ?>
+ <a id="new"></a>
<?php endif; ?>
<span class="element-invisible"><?php print $icon_title ?></span>
-<?php if ($new_posts): ?>
- </a>
-<?php endif; ?>
</div>