domain_content_form_alter(&$form, &$form_state, $form_id)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
domain_content/domain_content.module, line 181
<?php
function domain_content_form_alter(&$form, &$form_state, $form_id) {
if ($form_id == 'node_multiple_delete_confirm') {
$form['#redirect'] = $_GET['q'];
}
}
?>