diff options
Diffstat (limited to 'apps/user_ldap/lib/connection.php')
-rw-r--r-- | apps/user_ldap/lib/connection.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php index 6a0d00405c0..6850169f2df 100644 --- a/apps/user_ldap/lib/connection.php +++ b/apps/user_ldap/lib/connection.php @@ -656,10 +656,10 @@ class Connection extends BackendBase { $host .= ':' . $port; } $this->ldapConnectionRes = $this->ldap->connect($host, $port); - if($this->ldap->set_option($this->ldapConnectionRes, LDAP_OPT_PROTOCOL_VERSION, 3)) { - if($this->ldap->set_option($this->ldapConnectionRes, LDAP_OPT_REFERRALS, 0)) { + if($this->ldap->setOption($this->ldapConnectionRes, LDAP_OPT_PROTOCOL_VERSION, 3)) { + if($this->ldap->setOption($this->ldapConnectionRes, LDAP_OPT_REFERRALS, 0)) { if($this->config['ldapTLS']) { - $this->ldap->start_tls($this->ldapConnectionRes); + $this->ldap->startTls($this->ldapConnectionRes); } } } |