summaryrefslogtreecommitdiff
path: root/rt/share/html/Elements/ShowCustomFieldDateTime
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2015-08-17 22:22:02 -0700
committerMark Wells <mark@freeside.biz>2015-08-17 22:22:02 -0700
commitfeba5016425b52740c29653383343d0d1887a592 (patch)
treea85f4799e35e7682dc734985d77226131db82a2e /rt/share/html/Elements/ShowCustomFieldDateTime
parentef2bc5dcb69e67077ce45a624c107894765e3907 (diff)
display dates as real dates in Excel export, #23121, update for current RT
Diffstat (limited to 'rt/share/html/Elements/ShowCustomFieldDateTime')
-rw-r--r--rt/share/html/Elements/ShowCustomFieldDateTime6
1 files changed, 5 insertions, 1 deletions
diff --git a/rt/share/html/Elements/ShowCustomFieldDateTime b/rt/share/html/Elements/ShowCustomFieldDateTime
index 2ba873aad..e179d6a4b 100644
--- a/rt/share/html/Elements/ShowCustomFieldDateTime
+++ b/rt/share/html/Elements/ShowCustomFieldDateTime
@@ -49,7 +49,11 @@
my $content = $Object->Content;
my $DateObj = RT::Date->new ( $session{'CurrentUser'} );
$DateObj->Set( Format => 'ISO', Value => $content );
- $content = $DateObj->AsString;
+ if ($m->notes('FormatDate')) {
+ $content = $m->notes('FormatDate')->($DateObj);
+ } else {
+ $content = $DateObj->AsString;
+ }
</%INIT>
<%$content|n%>
<%ARGS>