From f12fc244773faeda07777ba299f6c0ca3645067c Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Wed, 1 Dec 2021 08:59:18 +1300 Subject: [PATCH] Remove isset checks on isForm We are now assigning these from Core_Page so they should be set. If we do get an enotice back from this then as long as it passes tests it will be the lesser evil & picked up later --- templates/CRM/Case/Form/ActivityTab.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/CRM/Case/Form/ActivityTab.tpl b/templates/CRM/Case/Form/ActivityTab.tpl index 36c5aa293b..2b778bbcc4 100644 --- a/templates/CRM/Case/Form/ActivityTab.tpl +++ b/templates/CRM/Case/Form/ActivityTab.tpl @@ -9,7 +9,7 @@ *} {*this template is used for activity accordion*} {assign var=caseid value=$caseID} -{if isset($isForm) and $isForm} +{if $isForm}
{ts}Activities{/ts} @@ -104,7 +104,7 @@ {/foreach} -{if isset($isForm) and $isForm} +{if $isForm}
{/if} -- 2.25.1