From 4480540cfedaa8f25e8cb0916ddfbafd96dda775 Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Sat, 2 Jun 2007 13:47:44 +0000 Subject: [PATCH] bugfix --- htdocs/lib/ldap.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/lib/ldap.class.php b/htdocs/lib/ldap.class.php index 3074724be6f..03b87c5c427 100644 --- a/htdocs/lib/ldap.class.php +++ b/htdocs/lib/ldap.class.php @@ -1040,7 +1040,7 @@ class Ldap $this->uacf = $this->parseUACF($this->ldap_utf8_decode($result[0]["useraccountcontrol"][0])); $this->pwdlastset = $this->convert_time($this->ldap_utf8_decode($result[0]["pwdlastset"][0])); - $this->badpwdtime = $this->convert_time($this->ldap_utf8_decode($result[0]["badPasswordTime"][0])); + $this->badpwdtime = $this->convert_time($this->ldap_utf8_decode($result[0]["badpasswordtime"][0])); ldap_free_result($this->result); }