You are here

function better_comments_delete_cancel in Better Comments 7

Same name and namespace in other branches
  1. 7.2 better_comments.module \better_comments_delete_cancel()

Cancel the delete option and resend the form.

1 string reference to 'better_comments_delete_cancel'
better_comments_menu in ./better_comments.module
Implements hook_menu().

File

./better_comments.module, line 289
Better Comments provides option to configure the comment system.

Code

function better_comments_delete_cancel($cid) {
  $commands[] = ajax_command_remove('#comment-wrap-' . $cid . '>.better-comments-confirm');
  return array(
    '#type' => 'ajax',
    '#commands' => $commands,
  );
}