function node_form_block_custom_block_delete_alter

Implements hook_form_FORM_ID_alter() for block_custom_block_delete().

Adds node specific submit handler to delete custom block form.

See also

node_form_block_custom_block_delete_submit()

File

drupal/core/modules/node/node.module, line 2114
The core module that allows content to be submitted to the site.

Code

function node_form_block_custom_block_delete_alter(&$form, &$form_state) {
  $form['#submit'][] = 'node_form_block_custom_block_delete_submit';
}