diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 4a466fa59854922b38734a115bca2cd67096f1ed..930af591b8cec6e01a154af5ba4ed42776ee3b9e 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -576,7 +576,7 @@ function theme_comment_block() { $items = array(); $number = variable_get('comment_block_count', 10); foreach (comment_get_recent($number) as $comment) { - $items[] = l($comment->subject, 'comment/' . $comment->cid, array('fragment' => 'comment-' . $comment->cid)) . '<br />' . t('@time ago', array('@time' => format_interval(REQUEST_TIME - $comment->changed))); + $items[] = l($comment->subject, 'comment/' . $comment->cid, array('fragment' => 'comment-' . $comment->cid)) .'<span>'. t('@time ago', array('@time' => format_interval(REQUEST_TIME - $comment->changed))) .'</span>'; } if ($items) {