diff options
-rw-r--r-- | modules/comment/comment.module | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module index a6e7f4cd8..867bc61df 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -1679,10 +1679,14 @@ function theme_comment_preview($comment, $links = array(), $visible = 1) { }; function theme_comment_view($comment, $links = array(), $visible = 1) { + static $first_new = TRUE; - // Emit selectors: $output = ''; - if (($comment->new = node_mark($comment->nid, $comment->timestamp)) != MARK_READ) { + $comment->new = node_mark($comment->nid, $comment->timestamp); + if ($first_new && $comment->new != MARK_READ) { + // Assign the anchor only for the first new comment. This avoids duplicate + // id attributes on a page. + $first_new = FALSE; $output .= "<a id=\"new\"></a>\n"; } |