aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/lib/plugins/authldap/auth.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/plugins/authldap/auth.php')
-rw-r--r--lib/plugins/authldap/auth.php25
1 files changed, 14 insertions, 11 deletions
diff --git a/lib/plugins/authldap/auth.php b/lib/plugins/authldap/auth.php
index b69ab05a4..f2cd94613 100644
--- a/lib/plugins/authldap/auth.php
+++ b/lib/plugins/authldap/auth.php
@@ -69,7 +69,8 @@ class auth_plugin_authldap extends AuthPlugin
return false;
}
$this->bound = 2;
- } elseif ($this->getConf('binddn') &&
+ } elseif (
+ $this->getConf('binddn') &&
$this->getConf('usertree') &&
$this->getConf('userfilter')
) {
@@ -564,11 +565,12 @@ class auth_plugin_authldap extends AuthPlugin
//set protocol version and dependend options
if ($this->getConf('version')) {
- if (!@ldap_set_option(
- $this->con,
- LDAP_OPT_PROTOCOL_VERSION,
- $this->getConf('version')
- )
+ if (
+ !@ldap_set_option(
+ $this->con,
+ LDAP_OPT_PROTOCOL_VERSION,
+ $this->getConf('version')
+ )
) {
msg('Setting LDAP Protocol version ' . $this->getConf('version') . ' failed', -1);
$this->debug('LDAP version set: ' . hsc(ldap_error($this->con)), 0, __LINE__, __FILE__);
@@ -582,11 +584,12 @@ class auth_plugin_authldap extends AuthPlugin
}
// needs version 3
if ($this->getConf('referrals') > -1) {
- if (!@ldap_set_option(
- $this->con,
- LDAP_OPT_REFERRALS,
- $this->getConf('referrals')
- )
+ if (
+ !@ldap_set_option(
+ $this->con,
+ LDAP_OPT_REFERRALS,
+ $this->getConf('referrals')
+ )
) {
msg('Setting LDAP referrals failed', -1);
$this->debug('LDAP referal set: ' . hsc(ldap_error($this->con)), 0, __LINE__, __FILE__);