diff options
author | Ivan Kohler <ivan@freeside.biz> | 2017-06-21 13:05:10 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2017-06-21 13:05:10 -0700 |
commit | 54632ad75498381c88e32850f7dda39965f7ad33 (patch) | |
tree | b162184f4c9d72f9eda3de9ca4912362b33502e3 | |
parent | ddf8a73dc4f6fd76f5fdc148935543a85884dc4a (diff) |
fix times on appointments list (RT stores dates in UTC), RT#76486
-rw-r--r-- | httemplate/view/cust_main/appointments.html | 2 |
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; |