summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-09-07 23:28:56 +0000
committerDries Buytaert <dries@buytaert.net>2010-09-07 23:28:56 +0000
commitcf57c8a46d318ec09c90c2f895f6cc279d24e2c6 (patch)
treec0681cde9ce0f03eece25873798e376c8d43f3a0 /modules
parent6df0c99d530e9e5f59a67eb9bdc4723dc3347d49 (diff)
downloadbrdo-cf57c8a46d318ec09c90c2f895f6cc279d24e2c6.tar.gz
brdo-cf57c8a46d318ec09c90c2f895f6cc279d24e2c6.tar.bz2
- Patch #807744 by Jacine, andypost: fix missing space in theme_comment_block().
Diffstat (limited to 'modules')
-rw-r--r--modules/comment/comment.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module
index 3d8d2a5d6..a05c1f0c7 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)) .'<span>'. t('@time ago', array('@time' => format_interval(REQUEST_TIME - $comment->changed))) .'</span>';
+ $items[] = l($comment->subject, 'comment/' . $comment->cid, array('fragment' => 'comment-' . $comment->cid)) .'&nbsp;<span>'. t('@time ago', array('@time' => format_interval(REQUEST_TIME - $comment->changed))) .'</span>';
}
if ($items) {