#183390 by hunmonk: forms should use form_state['redirect'] for redirection, not drupal_goto() - fix this in comment_admin_overview_submit()

5.x
Neil Drumm 2007-10-16 06:18:10 +00:00
parent a5f4560c6a
commit e588864b12
1 changed files with 1 additions and 1 deletions

View File

@ -1232,7 +1232,7 @@ function comment_admin_overview_submit($form_id, $form_values) {
}
cache_clear_all();
drupal_set_message(t('The update has been performed.'));
drupal_goto('admin/content/comment');
return 'admin/content/comment';
}
}