You are here

function domain_content_form_node_multiple_delete_confirm_alter in Domain Access 6.2

The multiple delete form issues a redirect in its submit function. So we must supply the proper path as a form element.

@link http://drupal.org/node/336218

File

domain_content/domain_content.module, line 188
Editorial overview module.

Code

function domain_content_form_node_multiple_delete_confirm_alter(&$form, &$form_state) {
  $form['#redirect'] = $_GET['q'];
}