mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-09-25 10:59:15 +02:00
#10420 fixed login ldap with quotes
This commit is contained in:
parent
60341b10c3
commit
da2ede8627
@ -402,8 +402,8 @@ function process_user_login_remote($login, $pass, $api=false)
|
|||||||
$config['auth_error'] = __('User not found in database or incorrect password');
|
$config['auth_error'] = __('User not found in database or incorrect password');
|
||||||
return false;
|
return false;
|
||||||
} else {
|
} else {
|
||||||
$user_info['fullname'] = db_escape_string_sql($sr['cn'][0]);
|
$user_info['fullname'] = io_safe_input(db_escape_string_sql($sr['cn'][0]));
|
||||||
$user_info['email'] = $sr['mail'][0];
|
$user_info['email'] = io_safe_input($sr['mail'][0]);
|
||||||
|
|
||||||
// Create the user.
|
// Create the user.
|
||||||
$create_user = create_user_and_permisions_ldap(
|
$create_user = create_user_and_permisions_ldap(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user