Summary | Turba LDAP server support test isn't working |
Queue | Turba |
Queue Version | 3.0.9 |
Type | Bug |
State | Resolved |
Priority | 2. Medium |
Owners | jan (at) horde (dot) org |
Requester | Michael.Nitsche (at) nitsche (dot) de |
Created | 09/27/2011 (5019 days ago) |
Due | |
Updated | 10/03/2011 (5013 days ago) |
Assigned | 09/28/2011 (5018 days ago) |
Resolved | 10/03/2011 (5013 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | 3.0.10 |
Patch | No |
State ⇒ Resolved
Milestone ⇒ 3.0.10
[jan] Fix LDAP connection test (
Bug #10554).3 files changed, 4 insertions(+), 1 deletions(-)
http://git.horde.org/horde-git/-/commit/f19e588709e7b8462df9316317a0019eb1f1ace4
New Attachment: test.php
helpful though.
is, where it comes from and how to fix it. The function is called
without the parameters, which have been collected before. So with no
parameters there can be no result.
In function appTest() _doConnectionTest() is called without parameters.
Fix:
- $ret .= $this->_doConnectionTest(); (remove this line)
+ $ret .= $this->_doConnectionTest($params); (replace with this line)
helpful though.
State ⇒ Feedback
State ⇒ Unconfirmed
Patch ⇒ No
Milestone ⇒
Queue ⇒ Turba
Summary ⇒ Turba LDAP server support test isn't working
Type ⇒ Bug
Priority ⇒ 2. Medium
Fix:
- $ret .= $this->_doConnectionTest();
+ $ret .= $this->_doConnectionTest($params);