From ba167142de00869611d70f63b3097efba3b470e5 Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Fri, 24 Feb 2023 18:45:11 +1300 Subject: [PATCH] Remove forward incompatible syntax from template --- templates/CRM/Custom/Form/Edit/CustomField.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/CRM/Custom/Form/Edit/CustomField.tpl b/templates/CRM/Custom/Form/Edit/CustomField.tpl index 119e8bbdab..fbf5ee179e 100644 --- a/templates/CRM/Custom/Form/Edit/CustomField.tpl +++ b/templates/CRM/Custom/Form/Edit/CustomField.tpl @@ -26,7 +26,7 @@ {assign var="index" value="1"} {foreach name=outer key=key item=item from=$formElement} {if $index < 10} - {assign var="index" value=`$index+1`} + {assign var="index" value=$index+1} {else} {$formElement.$key.html} {if $count == $element.options_per_line} @@ -34,7 +34,7 @@ {assign var="count" value="1"} {else} - {assign var="count" value=`$count+1`} + {assign var="count" value=$count+1} {/if} {/if} {/foreach} -- 2.25.1