From ffdf67af6b64187d90990d0fe708a4b11bba0e3e Mon Sep 17 00:00:00 2001 From: kurund Date: Tue, 13 Aug 2013 16:45:31 +0530 Subject: [PATCH] fix for CRM-13207 ---------------------------------------- * CRM-13207: Offline contribution in standalone mode is broken http://issues.civicrm.org/jira/browse/CRM-13207 --- templates/CRM/Contribute/Form/Contribution.tpl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/CRM/Contribute/Form/Contribution.tpl b/templates/CRM/Contribute/Form/Contribution.tpl index 23d313564a..3c144ce308 100644 --- a/templates/CRM/Contribute/Form/Contribution.tpl +++ b/templates/CRM/Contribute/Form/Contribution.tpl @@ -88,7 +88,8 @@ {if !$contributionMode and !$email and $outBound_option != 2} {assign var='profileCreateCallback' value=1 } {/if} - {include file="CRM/Contact/Form/NewContact.tpl"} + {* note that if we are using multiple instances of NewContact always pass values for block and prefix *} + {include file="CRM/Contact/Form/NewContact.tpl" blockNo=1 prefix=''} {/if} {if $contributionMode} {$form.payment_processor_id.label} * {$form.payment_processor_id.html} -- 2.25.1