Fixed issue with outgoing rule. Fixed messages order in rule wizard.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@3696 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Roy Wetherall
2006-09-05 12:31:11 +00:00
parent 65cc90d0d2
commit 91570cd9f6

View File

@@ -924,7 +924,7 @@ public class RuleServiceImpl implements RuleService, RuntimeRuleService
private boolean checkForCopy(Set<ExecutedRuleData> executedRules, NodeRef actionedUponNodeRef, Rule rule) private boolean checkForCopy(Set<ExecutedRuleData> executedRules, NodeRef actionedUponNodeRef, Rule rule)
{ {
boolean result = true; boolean result = true;
if (this.nodeService.hasAspect(actionedUponNodeRef, ContentModel.ASPECT_COPIEDFROM) == true) if (this.nodeService.exists(actionedUponNodeRef) == true && this.nodeService.hasAspect(actionedUponNodeRef, ContentModel.ASPECT_COPIEDFROM) == true)
{ {
if (logger.isDebugEnabled() == true) if (logger.isDebugEnabled() == true)
{ {