function comment_confirm_delete_submit

Form submission handler for comment_confirm_delete().

File

drupal/core/modules/comment/comment.admin.inc, line 306
Admin page callbacks for the Comment module.

Code

function comment_confirm_delete_submit($form, &$form_state) {
  $comment = $form_state['comment'];

  // Delete the comment and its replies.
  $comment
    ->delete();
  drupal_set_message(t('The comment and all its replies have been deleted.'));
  watchdog('content', 'Deleted comment @cid and its replies.', array(
    '@cid' => $comment
      ->id(),
  ));

  // Clear the cache so an anonymous user sees that his comment was deleted.
  cache_invalidate_tags(array(
    'content' => TRUE,
  ));
  $form_state['redirect'] = "node/{$comment->nid->target_id}";
}