From 3a444f3419f2ee18cf81d9bc9e1ecda224881f21 Mon Sep 17 00:00:00 2001 From: Brian Remmington Date: Wed, 9 Jun 2010 17:49:59 +0000 Subject: [PATCH] ALF-3179: Correction to handling of peer associations for which the transferred node is the target. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@20574 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- .../repo/transfer/RepoSecondaryManifestProcessorImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/java/org/alfresco/repo/transfer/RepoSecondaryManifestProcessorImpl.java b/source/java/org/alfresco/repo/transfer/RepoSecondaryManifestProcessorImpl.java index 547d485fbf..69c899e622 100644 --- a/source/java/org/alfresco/repo/transfer/RepoSecondaryManifestProcessorImpl.java +++ b/source/java/org/alfresco/repo/transfer/RepoSecondaryManifestProcessorImpl.java @@ -93,7 +93,7 @@ public class RepoSecondaryManifestProcessorImpl extends AbstractManifestProcesso //Process "source" peer associations (associations *to* this node) requiredPeerAssocs = node.getSourceAssocs(); currentPeerAssocs = nodeService.getSourceAssocs(correspondingNodeRef, RegexQNamePattern.MATCH_ALL); - processPeerAssociations(requiredPeerAssocs, currentPeerAssocs, correspondingNodeRef, true); + processPeerAssociations(requiredPeerAssocs, currentPeerAssocs, correspondingNodeRef, false); }