Remove needless parentheses

pull/462/head
Hypolite Petovan 2017-12-04 02:47:08 -05:00
parent 780481528d
commit 8bfe13246d
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}