summaryrefslogtreecommitdiff
path: root/httemplate/elements
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2012-10-30 12:16:13 -0700
committerMark Wells <mark@freeside.biz>2012-10-30 12:16:13 -0700
commitd77fe06b27410a41855e1425114ab8d9cdae4ff0 (patch)
treeb7f167d2623f2559d75c3af6f030e9e469e1e772 /httemplate/elements
parentdbae615569712c6f392dfd6cc1930f9d93340e31 (diff)
fix ticket display, fallout from #17067
Diffstat (limited to 'httemplate/elements')
-rw-r--r--httemplate/elements/table-tickets.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/elements/table-tickets.html b/httemplate/elements/table-tickets.html
index ffcaf0677..f89f98422 100644
--- a/httemplate/elements/table-tickets.html
+++ b/httemplate/elements/table-tickets.html
@@ -153,7 +153,7 @@ if ( $ss_priority ) {
my $format = $conf->config('date_format') || '%Y-%m-%d';
my $date_formatter = sub {
- my $time = str2time($_[0], 'GMT');
+ my $time = parse_datetime($_[0], 'GMT');
# exclude times within 24 hours of zero
($time > 86400) ? time2str($format, $time) : '';
};