summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2017-06-21 13:05:13 -0700
committerIvan Kohler <ivan@freeside.biz>2017-06-21 13:05:13 -0700
commit6a953cf2693cada43052a16481c433dab8878579 (patch)
tree2be5633ab802c1f558fa3f27712eac41070cb983
parentb7544e388a3f746399ebdfb77257879d47897b82 (diff)
fix times on appointments list (RT stores dates in UTC), RT#76486
-rw-r--r--httemplate/view/cust_main/appointments.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/view/cust_main/appointments.html b/httemplate/view/cust_main/appointments.html
index fe9865245..171cb5c8c 100644
--- a/httemplate/view/cust_main/appointments.html
+++ b/httemplate/view/cust_main/appointments.html
@@ -34,7 +34,7 @@
% }
%
% use Date::Parse qw( str2time );
-% my $starts = str2time( $ticket->{starts} ); #default format here sucks
+% my $starts = str2time( $ticket->{starts}, 'UTC' ); #default format here sucks
% my $starts_pretty = '';
% $starts_pretty = time2str('%a %h %o %Y %l:%M%P', $starts)
% if $starts > 86400;