1 user_form_test.module | user_form_test_user_account_submit($form, &$form_state) |
Submit function for user_profile_form().
File
- core/
modules/ user/ tests/ user_form_test/ user_form_test.module, line 94 - Dummy module implementing a form to test user password validation
Code
function user_form_test_user_account_submit($form, &$form_state) {
// Rebuild the form instead of letting the process end. This allows us to
// test for bugs that can be triggered in contributed modules.
$form_state['rebuild'] = TRUE;
}