| Summary | error in ldap driver |
| Queue | Forwards |
| Queue Version | 3.0.1 |
| Type | Bug |
| State | Resolved |
| Priority | 1. Low |
| Owners | bklang (at) horde (dot) org |
| Requester | vujin (at) fon (dot) bg (dot) ac (dot) yu |
| Created | 05/22/2008 (6377 days ago) |
| Due | |
| Updated | 05/22/2008 (6377 days ago) |
| Assigned | 05/22/2008 (6377 days ago) |
| Resolved | 05/22/2008 (6377 days ago) |
| Github Issue Link | |
| Github Pull Request | |
| Milestone | |
| Patch | No |
State ⇒ Resolved
State ⇒ Assigned
Priority ⇒ 1. Low
Patch ⇒ No
Milestone ⇒
Queue ⇒ Forwards
Summary ⇒ error in ldap driver
Type ⇒ Bug
State ⇒ Unconfirmed
as Admin
and i found two problema in ldap.php
first is in function _connect on line 622
619# case 'admin':
620# $result = @ldap_bind($this->_connection,
621# $this->_params[$realm]['admindn'],
622# $this->_params['adminpw']);
and correct code is
622# $this->_params[$realm]['adminpw']);
and second is in function disableForwarding on line 248
248# $res = ldap_modify($this->_connection, $userdn, $newDetails);
and correct code is
248# $res = ldap_modify($this->_connection, $this->_dn, $newDetails);