- Patch #807744 by Jacine, andypost: fix missing space in theme_comment_block().

merge-requests/26/head
Dries Buytaert 2010-09-07 23:28:56 +00:00
parent 6df0c99d53
commit cf57c8a46d
1 changed files with 1 additions and 1 deletions

View File

@ -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) {