diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-09-13 05:52:18 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-09-13 05:52:18 +0000 |
commit | 47ed44d7957258d5ae1bb00f58f25186e9287edf (patch) | |
tree | c800a77a8bb48163b78a185f185853c8dd2ea819 | |
parent | 413008b8909370514096cdc8a5fc186f5babd234 (diff) | |
download | brdo-47ed44d7957258d5ae1bb00f58f25186e9287edf.tar.gz brdo-47ed44d7957258d5ae1bb00f58f25186e9287edf.tar.bz2 |
#807744 follow-up by andypost: whitespace fix.
-rw-r--r-- | modules/comment/comment.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 2d038d1d1..e5d1337ba 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -581,7 +581,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)) . ' <span>' . t('@time ago', array('@time' => format_interval(REQUEST_TIME - $comment->changed))) . '</span>'; } if ($items) { |