From e90cfd5898dcac42434ce89bb939a723f0a250e1 Mon Sep 17 00:00:00 2001 From: Andrew Hunt Date: Thu, 14 Jan 2016 11:36:05 -0500 Subject: [PATCH] CRM-17818 Dedupe merge: use crmDate instead of hardcoded format ---------------------------------------- * CRM-17818: Merge screen modified date hardcoded format https://issues.civicrm.org/jira/browse/CRM-17818 --- templates/CRM/Contact/Form/Merge.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/CRM/Contact/Form/Merge.tpl b/templates/CRM/Contact/Form/Merge.tpl index c5d6f2b7d3..d55abc3946 100644 --- a/templates/CRM/Contact/Form/Merge.tpl +++ b/templates/CRM/Contact/Form/Merge.tpl @@ -84,9 +84,9 @@ You will need to manually delete that user (click on the link to open the %1 use Last modified - {$other_result.values.0.modified_date|date_format:"%d/%m/%y %H:%M:%S"} {if $other_result.values.0.modified_date gt $main_result.values.0.modified_date} (Most recent) {/if} + {$other_result.values.0.modified_date|crmDate} {if $other_result.values.0.modified_date gt $main_result.values.0.modified_date} (Most recent) {/if} - {$main_result.values.0.modified_date|date_format:"%d/%m/%y %H:%M:%S"} {if $main_result.values.0.modified_date gt $other_result.values.0.modified_date} (Most recent) {/if} + {$main_result.values.0.modified_date|crmDate} {if $main_result.values.0.modified_date gt $other_result.values.0.modified_date} (Most recent) {/if} -- 2.25.1