Commit fbd085c6 authored by Brian Major's avatar Brian Major
Browse files

ac2 - fixed comparison of user admins on group modify

parent 8cdb6ab9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -618,7 +618,7 @@ public class LdapGroupDAO<T extends Principal> extends LdapDAO

            // All the user administrators may have been removed.
            // account for that.
            if (group.getUserAdmins().isEmpty())
            if (group.getUserAdmins().size() != existingUserAdmins.size())
            {
                adminChanges = true;
            }