function user_form_test_user_account_submit

Submit function for user_profile_form().

1 string reference to 'user_form_test_user_account_submit'

File

drupal/modules/user/tests/user_form_test.module, line 78
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;
}