From 5b7537e60fe17c8fd15379a350d254f9df2405b1 Mon Sep 17 00:00:00 2001 From: demeritcowboy Date: Fri, 25 Jun 2021 13:12:43 -0400 Subject: [PATCH] php errors --- templates/CRM/Case/Form/Case.tpl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/CRM/Case/Form/Case.tpl b/templates/CRM/Case/Form/Case.tpl index 2edb838293..08c79e523c 100644 --- a/templates/CRM/Case/Form/Case.tpl +++ b/templates/CRM/Case/Form/Case.tpl @@ -34,12 +34,12 @@
{$activityTypeDescription}
{/if} -{if $clientName} +{if !empty($clientName)} {ts}Client{/ts} {$clientName} -{elseif !$clientName and $action eq 1} +{elseif empty($clientName) and $action eq 1} {if $context eq 'standalone'} {$form.client_id.label} {$form.client_id.html} @@ -64,7 +64,7 @@ {* This shows ACTIVITY custom fields, as opposed to CASE custom fields, so is not a duplicate of the other custom data block below. *} {if $groupTree} - {include file="CRM/Custom/Form/CustomData.tpl"} + {include file="CRM/Custom/Form/CustomData.tpl" skipTitle=0} {/if} -- 2.25.1