function comment_edit_page

Page callback for comment editing.

1 string reference to 'comment_edit_page'
comment_menu in drupal/modules/comment/comment.module
Implements hook_menu().

File

drupal/modules/comment/comment.module, line 1820
Enables users to comment on published content.

Code

function comment_edit_page($comment) {
  drupal_set_title(t('Edit comment %comment', array(
    '%comment' => $comment->subject,
  )), PASS_THROUGH);
  $node = node_load($comment->nid);
  return drupal_get_form("comment_node_{$node->type}_form", $comment);
}