comment_edit_page

Versions
mediamosa-21
comment_edit_page($comment)

Page callback for comment editing.

Code

modules/comment/comment.module, line 1695

<?php
function comment_edit_page($comment) {
  drupal_set_title(t('Edit comment %comment', array('%comment' => $comment->subject)), PASS_THROUGH);
  return drupal_get_form('comment_form', $comment);
}
?>