summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2017-06-21 13:05:11 -0700
committerIvan Kohler <ivan@freeside.biz>2017-06-21 13:05:11 -0700
commit09e21d010060855f842bcf6a5edec82ff705ddf6 (patch)
tree3d7c98f064a47fe447ce4f404998bd0e8cc01e48
parentb4d7dc9ec38daec3ee96d32287f701ed719b5eba (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 9bf5be1d5..a586b6761 100644
--- a/httemplate/view/cust_main/appointments.html
+++ b/httemplate/view/cust_main/appointments.html
@@ -37,7 +37,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;