From 9bee98c96543f39ab3cd92592942dc79cdaba373 Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Wed, 1 Dec 2021 09:41:39 +1300 Subject: [PATCH] Remove issets from Activity search screen This will regress enotices - but I think it's an OK trade off at this stage to try to squeeze out a few more issets while most people can't see those notices anyway --- templates/CRM/Activity/Form/Selector.tpl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/CRM/Activity/Form/Selector.tpl b/templates/CRM/Activity/Form/Selector.tpl index 1422fb1f6f..2398956831 100644 --- a/templates/CRM/Activity/Form/Selector.tpl +++ b/templates/CRM/Activity/Form/Selector.tpl @@ -21,12 +21,12 @@ {/if} {foreach from=$columnHeaders item=header} - {if isset($header.sort)} + {if $header.sort} {assign var='key' value=$header.sort} {if !empty($sort)} {$sort->_response.$key.link} {/if} - {elseif isset($header.name)} + {elseif $header.name} {$header.name} {/if} @@ -54,7 +54,7 @@ {/if} - {if isset($row.activity_subject)}{$row.activity_subject|purify}{/if} + {$row.activity_subject|purify} {if !$row.source_contact_id} @@ -67,7 +67,7 @@ {if $row.mailingId} {$row.recipients} - {elseif isset($row.recipients)} + {elseif $row.recipients} {$row.recipients} {elseif !$row.target_contact_name} n/a -- 2.25.1