Index: providers/cm-authz-provider/src/java/org/sakaiproject/coursemanagement/impl/provider/CourseManagementGroupProvider.java =================================================================== --- providers/cm-authz-provider/src/java/org/sakaiproject/coursemanagement/impl/provider/CourseManagementGroupProvider.java (revision 62757) +++ providers/cm-authz-provider/src/java/org/sakaiproject/coursemanagement/impl/provider/CourseManagementGroupProvider.java (working copy) @@ -139,7 +139,7 @@ // Only add the section eids if they aren't already in the map or if the new role has a higher preference. for(Iterator rrRoleIter = rrGroupRoleMap.keySet().iterator(); rrRoleIter.hasNext();) { - String sectionEid = rrRoleIter.next(); + String sectionEid = rrRoleIter.next().toUpperCase(); String existingRole = groupRoleMap.get(sectionEid); String rrRole = rrGroupRoleMap.get(sectionEid);