From cf57c8a46d318ec09c90c2f895f6cc279d24e2c6 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Tue, 7 Sep 2010 23:28:56 +0000 Subject: [PATCH] - Patch #807744 by Jacine, andypost: fix missing space in theme_comment_block(). --- modules/comment/comment.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 3d8d2a5d66a..a05c1f0c762 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -580,7 +580,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)) .''. t('@time ago', array('@time' => format_interval(REQUEST_TIME - $comment->changed))) .''; + $items[] = l($comment->subject, 'comment/' . $comment->cid, array('fragment' => 'comment-' . $comment->cid)) .' '. t('@time ago', array('@time' => format_interval(REQUEST_TIME - $comment->changed))) .''; } if ($items) {