From c7dc23b804fb8145eb60733a07e6c8e5cd6e9387 Mon Sep 17 00:00:00 2001 From: eileen Date: Fri, 5 Jan 2024 08:27:59 +1300 Subject: [PATCH] dev/core#4886 fix syntax error in contact summary template --- templates/CRM/Contact/Import/Form/Summary.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/CRM/Contact/Import/Form/Summary.tpl b/templates/CRM/Contact/Import/Form/Summary.tpl index f0d6368f62..0fa34e259e 100644 --- a/templates/CRM/Contact/Import/Form/Summary.tpl +++ b/templates/CRM/Contact/Import/Form/Summary.tpl @@ -118,7 +118,7 @@ {if $groupAdditions} {ts}Import to Groups{/ts} - {foreach from="$groupAdditions" item="group"} + {foreach from=$groupAdditions item="group"} : {if $group.new} {ts count=$group.added plural='%count contacts added to this new group.'}One contact added to this new group.{/ts} @@ -134,7 +134,7 @@ {if $tagAdditions} {ts}Tagged Imported Contacts{/ts} - {foreach from="$tagAdditions" item="tag"} + {foreach from=$tagAdditions item="tag"} : {ts count=$tag.added plural='%count contacts are tagged with this tag.'}One contact is tagged with this tag.{/ts} {if $tag.notAdded}{ts count=$tag.notAdded plural='%count contacts NOT tagged (already tagged to this tag).'}One contact NOT tagged (already tagged to this tag).{/ts}{/if}
-- 2.25.1