function system_actions_manage_form_submit

7.x system.admin.inc system_actions_manage_form_submit($form, &$form_state)
6.x system.module system_actions_manage_form_submit($form, &$form_state)

Process system_actions_manage form submissions.

File

drupal-6.x/modules/system/system.module, line 1481
Configuration system that lets administrators modify the workings of the site.

Code

function system_actions_manage_form_submit($form, &$form_state) {
  if ($form_state['values']['action']) {
    $form_state['redirect'] = 'admin/settings/actions/configure/' . $form_state['values']['action'];
  }
}