- Patch #807744 by Jacine, andypost: fix missing space in theme_comment_block().
parent
6df0c99d53
commit
cf57c8a46d
|
@ -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)) .' <span>'. t('@time ago', array('@time' => format_interval(REQUEST_TIME - $comment->changed))) .'</span>';
|
||||
}
|
||||
|
||||
if ($items) {
|
||||
|
|
Loading…
Reference in New Issue