--- content_moderator.module 2006-08-12 10:31:27.000000000 +0100 +++ content_moderator_new.module 2006-08-12 10:31:31.000000000 +0100 @@ -276,10 +276,13 @@ function content_moderator_block($op = ' } else if ($op == 'view') { if (user_access('moderate nodes')){ - $block['subject'] = l(t('moderation queue'),'admin/content_moderator'); $sql = db_rewrite_sql('SELECT n.nid, n.title, l.comment_count FROM {node} n INNER JOIN {node_comment_statistics} l ON n.nid = l.nid WHERE n.status = 1 AND n.moderate = 1 ORDER BY n.changed DESC'); $result = db_query_range($sql,0,10); - $block['content'] = node_title_list($result); + $content = node_title_list($result); + $content .= ''; + $title = 'moderation queue'; + $block['subject'] = $title; + $block['content'] = $content; return $block; } }