From 7690395f52e3d0853695cea77f0103fb56c81838 Mon Sep 17 00:00:00 2001 From: Andrew Branson Date: Thu, 24 Jul 2014 12:11:29 +0200 Subject: Wrong search was being called by the LDAP chooser - this will be fixed properly in a bigger kernel update, allowing ItemPaths to contain properties. --- src/main/java/com/c2kernel/gui/lifecycle/chooser/LDAPEntryChooser.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/main/java/com/c2kernel/gui/lifecycle/chooser/LDAPEntryChooser.java b/src/main/java/com/c2kernel/gui/lifecycle/chooser/LDAPEntryChooser.java index d69049b..7245618 100644 --- a/src/main/java/com/c2kernel/gui/lifecycle/chooser/LDAPEntryChooser.java +++ b/src/main/java/com/c2kernel/gui/lifecycle/chooser/LDAPEntryChooser.java @@ -33,7 +33,7 @@ public class LDAPEntryChooser extends JComboBox { try { - Iterator children = Gateway.getLookup().search(mDomainPath); + Iterator children = Gateway.getLookup().search(mDomainPath, "*"); while (children.hasNext()) { DomainPath domPath = (DomainPath)children.next(); -- cgit v1.2.3