function system_actions_manage_form_submit in Drupal 6
Same name and namespace in other branches
- 7 modules/system/system.admin.inc \system_actions_manage_form_submit()
Process system_actions_manage form submissions.
File
- 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'];
}
}