From b310666c2662044ab761f8c9798a46a064d1c6d5 Mon Sep 17 00:00:00 2001 From: "Carl P. Corliss" Date: Wed, 20 Jun 2018 01:07:30 -0400 Subject: [PATCH] misspelled ldap bind username variable * $ldapbndun -> $ldapbindun --- src/etc/inc/auth.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/etc/inc/auth.inc b/src/etc/inc/auth.inc index 86888c6655..f7b34aabc9 100644 --- a/src/etc/inc/auth.inc +++ b/src/etc/inc/auth.inc @@ -1014,7 +1014,7 @@ function ldap_test_bind($authcfg) { $ldapbindpw = $authcfg['ldap_bindpw']; $ldapver = $authcfg['ldap_protver']; $ldaptimeout = is_numeric($authcfg['ldap_timeout']) ? $authcfg['ldap_timeout'] : 5; - if (empty($ldapbndun) || empty($ldapbindpw)) { + if (empty($ldapbindun) || empty($ldapbindpw)) { $ldapanon = true; } else { $ldapanon = false;