|
|
|
Environment:
|
All
|
|
Issue Links:
|
Relates
|
|
This issue has a non-specific relationship to:
|
|
|
MDL-5454 LDAP eDirectory password expiration checks fail
|
|
|
|
|
|
|
|
cvs:/auth/ldap/lib.php
In function auth_password_expire () is used strtolower().
But all information is stored in a case sensitive format.
I removed it and it starts to work as I'm expecting.
$info[0][strtolower($CFG->ldap_expireattr)][0]
|
|
Description
|
cvs:/auth/ldap/lib.php
In function auth_password_expire () is used strtolower().
But all information is stored in a case sensitive format.
I removed it and it starts to work as I'm expecting.
$info[0][strtolower($CFG->ldap_expireattr)][0] |
Show » |
|
We cannot confirm this, pass on to paca.
From Petri Asikainen (paca at sci.fi) Wednesday, 16 November 2005, 05:56 PM:
Some versions of php convert returned attribute names to lowercase or so. Thats why strtolower() is here and there at auth/ldap/lib.php.