--- adminblock.module.old 2006-05-13 11:46:04.000000000 -0500 +++ adminblock.module 2006-05-13 12:00:58.000000000 -0500 @@ -49,7 +49,7 @@ $comment_count_display = $comment_count > $nlimit ? ' ('. $comment_count .')' : ''; $items = array(); while ($comment = db_fetch_object($result)) { - $items[] = check_plain($comment->subject) .' - '. format_date($comment->timestamp, 'medium') .'
['. l(t('node'), 'node/'. $comment->nid, array('title' => $comment->title)) .']|['. l(t('edit'), 'comment/edit/'. $comment->cid) .']|['. l(t('delete'), 'comment/delete/'. $comment->cid) .']'; + $items[] = check_plain($comment->subject) .' - '. format_date($comment->timestamp, 'medium') .'
['. l(t('node'), 'node/'. $comment->nid, array('title' => $comment->title), NULL, 'comment-'. $comment->cid) .']|['. l(t('edit'), 'comment/edit/'. $comment->cid) .']|['. l(t('delete'), 'comment/delete/'. $comment->cid) .']'; } }