You are here

function ldaphelp_users_submit in LDAP integration 6

File

ldaphelp/ldaphelp.module, line 407
The ldaphelp module is a module to help admins debug ldap_integration modules.

Code

function ldaphelp_users_submit($form, $form_state) {
  $url = 'admin/settings/ldap/help/users/list';
  if ($form_state['values']['check_ldap']) {
    $url .= '/verify';
  }
  drupal_goto($url);
}