Commit 08a6ce99 authored by Patrick Dowler's avatar Patrick Dowler
Browse files

make checkGroupExists only look at public attributes

parent 51ec1cf6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -998,7 +998,7 @@ public class LdapGroupDAO<T extends Principal> extends LdapDAO
    {
        try
        {
            Group g = getGroup(getGroupDN(groupID), groupID, GROUP_ATTRS);
            Group g = getGroup(getGroupDN(groupID), groupID, PUB_GROUP_ATTRS);
            return true;
        }
        catch(GroupNotFoundException ex)