LDAP plugin bug in FOG 1.6 working branch
-
Hi,
I am testing the FOG 1.6 test version and I detect a bug in the LDAP plugin. When you try to add a new LDAP server, the WEBUI says to you that the server exists.
I saw the code and the problem is in ldapmanagement.page.php line 660 :
if ($ldap) { throw new Exception( _('An LDAP server already exists with this name!') ); }
Change to
if ($exists) { throw new Exception( _('An LDAP server already exists with this name!') ); }
-
@Fernando-Gietz Thanks for reporting. I’ll leave that to Tom as he knows that code a lot better than I do.
@Tom-Elliott Please let us know if you don’t find the time. I might jump in then.
-
Fixed thanks for reporting.