You are here

function path_redirect_edit_form_submit in Path redirect 6

File

./path_redirect.admin.inc, line 466
Administrative page callbacks for the path_redirect module.

Code

function path_redirect_edit_form_submit($form, &$form_state) {
  path_redirect_save($form_state['values']);
  drupal_set_message(t('The redirect has been saved.'));
  $form_state['redirect'] = 'admin/build/path-redirect';
}