Index: content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java =================================================================== --- content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java (revision 7076) +++ content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java (working copy) @@ -64,6 +64,7 @@ import org.sakaiproject.content.api.GroupAwareEntity.AccessMode; import org.sakaiproject.content.cover.ContentTypeImageService; import org.sakaiproject.content.tool.ResourcesAction.ContentPermissions; +import org.sakaiproject.entity.api.Entity; import org.sakaiproject.entity.api.EntityPropertyNotDefinedException; import org.sakaiproject.entity.api.EntityPropertyTypeException; import org.sakaiproject.entity.api.Reference; @@ -661,7 +662,8 @@ { setIsAdmin(true); String siteCollectionId = contentService.getSiteCollection(m_reference.getContext()); - if(siteCollectionId.equals(entity.getId())) + String dropBoxCollectionId = org.sakaiproject.content.api.ContentHostingService.COLLECTION_DROPBOX + m_reference.getContext() + Entity.SEPARATOR; + if(siteCollectionId.equals(entity.getId()) || (entity.getId().startsWith(dropBoxCollectionId) && entity.getId().split(Entity.SEPARATOR).length<=4)) { setCanSetQuota(true); try Index: content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java =================================================================== --- content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java (revision 7076) +++ content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java (working copy) @@ -2595,7 +2595,8 @@ item.setIsAdmin(true); String siteCollectionId = ContentHostingService.getSiteCollection(contextId); - if(siteCollectionId.equals(entity.getId())) + String dropBoxCollectionId = org.sakaiproject.content.api.ContentHostingService.COLLECTION_DROPBOX + contextId + Entity.SEPARATOR; + if(siteCollectionId.equals(entity.getId()) || (entity.getId().startsWith(dropBoxCollectionId) && entity.getId().split(Entity.SEPARATOR).length<=4)) { item.setCanSetQuota(true); try