Makes admin/comment/edit/... pages provide the title and link of the associated node, so that the administrator can easily verify that the comment has been posted in the correct place. http://drupal.org/node/11782 --- comment.module Fri Apr 8 10:00:02 2005 +++ comment.module Thu Apr 14 11:53:08 2005 @@ -928,6 +928,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, 60);