Closed
Description
This commit seems to have broken LDAP auth for some users: 29885de
The key and value are passed to ldap_set_option
which expects the key to be a constant, not a string.
if (! ldap_set_option($this->ds, $key, $value)) {
For reference: http://php.net/ldap_set_option
It causes this runtime warning as well:
phpMyFAQ warning [2]: ldap_set_option() expects parameter 2 to be long, string given in /home/kb/knowledge-base/inc/PMF/Ldap.php on line 124
Hope that helps.