From 1efedd26cea4aaf74a49069c1b6f2943be3c0810 Mon Sep 17 00:00:00 2001 From: manuel Date: Tue, 9 Apr 2019 13:39:30 +0200 Subject: [PATCH] Fixed bug in LDAP authentication Former-commit-id: 4e0b2d46d5bcd71ea63e9d09e7c0d8865735227f --- pandora_console/include/auth/mysql.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/auth/mysql.php b/pandora_console/include/auth/mysql.php index 63daae2967..6ccd6f9a1e 100644 --- a/pandora_console/include/auth/mysql.php +++ b/pandora_console/include/auth/mysql.php @@ -85,7 +85,7 @@ function process_user_login($login, $pass, $api=false) return process_user_login_local($login, $pass, $api); } else { $login_remote = process_user_login_remote($login, io_safe_output($pass), $api); - if ($login_remote == false && $config['fallback_local_auth'] == '1') { + if ($login_remote == false) { return process_user_login_local($login, $pass, $api); } else { return $login_remote;