--- comment.module Wed Oct 20 16:08:47 2004 +++ comment.module Wed Oct 20 16:10:55 2004 @@ -959,6 +959,8 @@ function comment_admin_edit($cid) { $comment = drupal_unpack($comment); if ($comment) { + $node = node_load(array("nid" => $comment->nid)); + $form .= form_item(t("Node"), l($node->title, "node/$node->nid")); if (!$comment->uid) { // If comment from non-registered user, allow admin to modify anonymous fields. $form .= form_textfield(t('Name'), 'name', $comment->name ? $comment->name : variable_get('anonymous', 'Anonymous') , 20, 40);