From deffb2428cc26a5cfbfa65b8ff0c07dbb1837261 Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Tue, 4 Jan 2022 11:51:48 +1300 Subject: [PATCH] Fix over-escaping when default escaping is on --- templates/CRM/Custom/Page/Field.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/CRM/Custom/Page/Field.tpl b/templates/CRM/Custom/Page/Field.tpl index 2ed880351a..39b40c802b 100644 --- a/templates/CRM/Custom/Page/Field.tpl +++ b/templates/CRM/Custom/Page/Field.tpl @@ -41,11 +41,11 @@ {$row.label} {$row.data_type} {$row.html_type} - {$row.weight} + {$row.weight|smarty:nodefaults} {if !empty($row.is_required)} {ts}Yes{/ts} {else} {ts}No{/ts} {/if} {if !empty($row.is_searchable)} {ts}Yes{/ts} {else} {ts}No{/ts} {/if} {if !empty($row.is_active)} {ts}Yes{/ts} {else} {ts}No{/ts} {/if} - {$row.action|replace:'xx':$row.id} + {$row.action|smarty:nodefaults|replace:'xx':$row.id} {/foreach} -- 2.25.1