From 661b6a287b99d321e25fb2dce19668aeb44a701d Mon Sep 17 00:00:00 2001 From: Matthew Wire Date: Wed, 26 Aug 2020 12:36:24 +0100 Subject: [PATCH] Custom money field is already formatted when passing to tpl - don't format again --- templates/CRM/Custom/Page/CustomDataView.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/CRM/Custom/Page/CustomDataView.tpl b/templates/CRM/Custom/Page/CustomDataView.tpl index fafb2fd82d1a..d09cdf574064 100644 --- a/templates/CRM/Custom/Page/CustomDataView.tpl +++ b/templates/CRM/Custom/Page/CustomDataView.tpl @@ -63,7 +63,7 @@ {$element.field_title} {if $element.field_data_type == 'Money'} {if $element.field_type == 'Text'} - {$element.field_value|crmMoney} + {$element.field_value} {else} {$element.field_value} {/if}