-
Type:
Bug
-
Status: Closed
-
Resolution: Won't Fix
-
Affects Version/s: 6.1.1 CE GA2, 6.1.20 EE GA2
-
Fix Version/s: --Sprint 11/12, 6.2.0 CE M2
-
Component/s: Documents & Media, Portal Services, Portal Services > Legacy
-
Labels:None
-
Fix Priority:3
-
Where was the bug?:Java
-
Git Pull Request:
DL service calls to move file entry requires serviceContext.scopeGroupId to be filled if moving to default parent folder. Mandatory fields should not be in serviceContext.
protected Repository getRepository( long folderId, ServiceContext serviceContext) throws PortalException, SystemException { Repository repository = null; if (folderId == DLFolderConstants.DEFAULT_PARENT_FOLDER_ID) { repository = getRepository(serviceContext.getScopeGroupId()); } else { repository = getRepository(folderId, 0, 0); } return repository; }
- is caused by
-
LPS-21378 Moving a file to a folder on another repository makes the file vanish into limbo
- Closed