mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-14 17:58:59 +00:00
Merged HEAD-BUG-FIX (4.3/Cloud) to HEAD (4.3/Cloud)
58157: Merged V4.2-BUG-FIX (4.2.1) to HEAD-BUG-FIX (Cloud/4.3) 57990: Merged DEV to V4.2-BUG-FIX (4.2.1) 57207 : MNT-9777 : MS Office Documents Edited and attempted to save with MS Office 2011 for Mac apps over WebDAV causes Word to Crash - Changing check `is sourceParentNodeRef not equals to destParentNodeRef` to` is sourceFileInfo not euqals to destFileInfo` 57592 : MNT-9777 : MS Office Documents Edited and attempted to save with MS Office 2011 for Mac apps over WebDAV causes Word to Crash - Added test for Shuffle WebDAV move within the same folder . Also added test for MNT-6480 fix git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@61922 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -198,7 +198,7 @@ public class MoveMethod extends HierarchicalMethod
|
||||
}
|
||||
// ALF-7079 fix, if destination exists then its content is updated with source content and source is deleted if
|
||||
// this is a move
|
||||
if (!sourceFileInfo.isFolder() && destFileInfo != null && !sourceParentNodeRef.equals(destParentNodeRef))
|
||||
if (!sourceFileInfo.isFolder() && destFileInfo != null && !sourceFileInfo.equals(destFileInfo))
|
||||
{
|
||||
copyContentOnly(sourceFileInfo, destFileInfo, fileFolderService);
|
||||
fileFolderService.setHidden(destFileInfo.getNodeRef(), false);
|
||||
|
Reference in New Issue
Block a user