From 6341d4482c7f5febff0b7c132083763a4d32b504 Mon Sep 17 00:00:00 2001 From: Dave Greenberg Date: Tue, 30 Jul 2013 17:41:19 -0700 Subject: [PATCH] CRM-13124 Smarty variable for processor name was no longer correct in templates/CRM/Contribute/Form/Contribution/Confirm.tpl ---------------------------------------- * CRM-13124: Payment processor name missing from confirmation message http://issues.civicrm.org/jira/browse/CRM-13124 --- templates/CRM/Contribute/Form/Contribution/Confirm.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/CRM/Contribute/Form/Contribution/Confirm.tpl b/templates/CRM/Contribute/Form/Contribution/Confirm.tpl index e3fc398db2..e6be2a82bb 100644 --- a/templates/CRM/Contribute/Form/Contribution/Confirm.tpl +++ b/templates/CRM/Contribute/Form/Contribution/Confirm.tpl @@ -36,7 +36,7 @@ {if $paymentProcessor.payment_processor_type EQ 'Google_Checkout'} {ts}Click the Google Checkout button to checkout to Google, where you will select your payment method and complete the contribution.{/ts} {else} - {ts 1=$paymentProcessor.processorName 2=$button}Click the %2 button to go to %1, where you will select your payment method and complete the contribution.{/ts} + {ts 1=$paymentProcessor.name 2=$button}Click the %2 button to go to %1, where you will select your payment method and complete the contribution.{/ts} {/if} {elseif ! $is_monetary or $amount LE 0.0 or $is_pay_later} {ts 1=$button}To complete this transaction, click the %1 button below.{/ts} -- 2.25.1