X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=ldapauth%2Fldapauth.php;h=a0b270e38842adbc1cae6322bf7efe82c12ee230;hb=8bfe13246dd1512b623e499016133d79c1d87e62;hp=d01f83ef831d6b244a2123499c9f8b546e7a8c5f;hpb=780481528d85fd74660a95a48474bd25b2d8804f;p=friendica-addons.git diff --git a/ldapauth/ldapauth.php b/ldapauth/ldapauth.php index d01f83ef..a0b270e3 100755 --- a/ldapauth/ldapauth.php +++ b/ldapauth/ldapauth.php @@ -89,7 +89,7 @@ function ldapauth_authenticate($username, $password) $ldap_autocreateaccount_emailattribute = Config::get('ldapauth', 'ldap_autocreateaccount_emailattribute'); $ldap_autocreateaccount_nameattribute = Config::get('ldapauth', 'ldap_autocreateaccount_nameattribute'); - if (!((strlen($password)) && (function_exists('ldap_connect')) && (strlen($ldap_server)))) { + if (!(strlen($password) && function_exists('ldap_connect') && strlen($ldap_server))) { logger("ldapauth: not configured or missing php-ldap module"); return false; }