From c93daeb07e4d711559f5c702dac8f34d770ba7d4 Mon Sep 17 00:00:00 2001 From: Jan Vonka Date: Tue, 23 Dec 2008 15:24:24 +0000 Subject: [PATCH] Merged V3.0 to HEAD 12381: Reset DEBUG flag - again 12386: Fix for ETHREEOH-1100 - Unable to edit wiki pages with a single quote ' in the page title 12390: Fix for ETHREEOH-1099 blocker - double encoding issue with Site Finder and Wiki components. 12419: JAWS-179: Share I18N issues 12464: Fix for ETHREEOH-1132: Delete button in My Workspaces dashlet does not work 12506: Make min entry length for search in Members > Invite to be 3, not 0 git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@12546 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- config/alfresco/workflow/invite_processdefinition.xml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config/alfresco/workflow/invite_processdefinition.xml b/config/alfresco/workflow/invite_processdefinition.xml index 9a83307ee6..638accb1ee 100644 --- a/config/alfresco/workflow/invite_processdefinition.xml +++ b/config/alfresco/workflow/invite_processdefinition.xml @@ -29,7 +29,9 @@ mail.parameters.to = inviteePerson.properties["cm:email"]; mail.parameters.subject = "Invitation to join '" + siteName + "' site"; - var template = companyhome.childByNamePath("Data Dictionary/Email Templates/invite/invite-email.ftl"); + var results = search.luceneSearch(" PATH:\"app:company_home/app:dictionary/app:email_templates/cm:invite/cm:invite-email.ftl\""); + var template = results[0]; + var args = []; args["inviteePersonRef"] = inviteePerson.nodeRef.toString(); args["inviterPersonRef"] = inviterPerson.nodeRef.toString();