You are here

function ldapauth_menu_alter in LDAP integration 6

Implementation of hook_menu_alter().

File

./ldapauth.module, line 261
ldapauth provides authentication against ldap server.

Code

function ldapauth_menu_alter(&$callbacks) {
  if (variable_get('ldapauth_disable_pass_change', FALSE)) {
    unset($callbacks['user/password']);
  }
}