Merge branch 'ent-3576-ldap-advanced-remote-user-unchecked' into 'develop'

Fixed ldap adv. perms continues apliying when autocreate remote is unselected

See merge request artica/pandorafms!2221
This commit is contained in:
Daniel Rodriguez 2019-06-03 15:09:15 +02:00
commit d0e99e1018
1 changed files with 32 additions and 29 deletions

View File

@ -282,6 +282,8 @@ function process_user_login_remote($login, $pass, $api=false)
}
}
} else if ($config['auth'] === 'ldap') {
// Check if autocreate remote users is active.
if ($config['autocreate_remote_users'] == 1) {
if ($config['ldap_save_password']) {
$update_credentials = change_local_user_pass_ldap($login, $pass);
@ -318,6 +320,7 @@ function process_user_login_remote($login, $pass, $api=false)
}
}
}
}
return $login;
}