fixed copy&paste error: store ldap_tls setting in user_ldap, not

user_tls
This commit is contained in:
Markus Kalkbrenner 2011-11-17 15:17:01 +01:00 committed by Robin Appelman
parent 0155effdb7
commit cff6a41e2b

View file

@ -42,7 +42,7 @@ class OC_USER_LDAP extends OC_User_Backend {
$this->ldap_password = OC_Appconfig::getValue('user_ldap', 'ldap_password','');
$this->ldap_base = OC_Appconfig::getValue('user_ldap', 'ldap_base','');
$this->ldap_filter = OC_Appconfig::getValue('user_ldap', 'ldap_filter','');
$this->ldap_tls = OC_Appconfig::getValue('user_tls', 'ldap_tls', 0);
$this->ldap_tls = OC_Appconfig::getValue('user_ldap', 'ldap_tls', 0);
if( !empty($this->ldap_host)
&& !empty($this->ldap_port)