function comment_confirm_delete_page

Page callback for comment deletions.

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

File

modules/comment/comment.admin.inc, line 244

Code

function comment_confirm_delete_page($cid) {
    if ($comment = comment_load($cid)) {
        return drupal_get_form('comment_confirm_delete', $comment);
    }
    return MENU_NOT_FOUND;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.