From 92db779d37286b9e2ffdb70454a4b1dd4f5a0e55 Mon Sep 17 00:00:00 2001 From: ranjit-git Date: Tue, 24 Oct 2023 11:45:20 +0530 Subject: [PATCH] reminder xss bug fix xss bug fix report link https://huntr.com/bounties/d2d6b117-ed5a-4328-9702-e179fa68d26a/ --- templates/CRM/Admin/Page/Reminders.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/CRM/Admin/Page/Reminders.tpl b/templates/CRM/Admin/Page/Reminders.tpl index 0418fd99e4..c04b229e70 100644 --- a/templates/CRM/Admin/Page/Reminders.tpl +++ b/templates/CRM/Admin/Page/Reminders.tpl @@ -29,7 +29,7 @@ {if $rows and is_array($rows)} {foreach from=$rows item=row} - {$row.title} + {$row.title|smarty:nodefaults|purify} {$row.entity} - {$row.value} {if $row.absolute_date}{$row.absolute_date|crmDate}{else}{$row.start_action_offset} {$row.start_action_unit}{if $row.start_action_offset > 1}{ts}(s){/ts}{/if} {$row.start_action_condition} {$row.entityDate}{/if} {$row.status} -- 2.25.1