function remove_duplicates_settings_form_submit_process in Remove Duplicates 7
Processing the settings form (Processing step 1/2).
If the settings form has not been confirmed, the confirm form is set to be built.
See also
remove_duplicates_settings_form()
1 call to remove_duplicates_settings_form_submit_process()
- remove_duplicates_settings_form_submit in ./
remove_duplicates.module - Implements hook_form_submit().
File
- ./
remove_duplicates.module, line 200 - Remove duplicate nodes according to node fields or Custom fields.
Code
function remove_duplicates_settings_form_submit_process($form, &$form_state) {
if (empty($form_state['storage']['confirm'])) {
$form_state['rebuild'] = TRUE;
$form_state['storage']['confirm'] = TRUE;
}
}