From e08d76965aaa5c30d1344e6d778577803b2d0723 Mon Sep 17 00:00:00 2001 From: Chris Sharp Date: Wed, 15 Dec 2021 08:49:28 -0500 Subject: [PATCH] LP#1954923: Fix current date issue in Boostrap OPAC Circ History CSV export Signed-off-by: Chris Sharp Signed-off-by: Garry Collum Signed-off-by: Michele Morgan --- Open-ILS/src/templates-bootstrap/opac/myopac/circ_history/export.tt2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/templates-bootstrap/opac/myopac/circ_history/export.tt2 b/Open-ILS/src/templates-bootstrap/opac/myopac/circ_history/export.tt2 index 45aca551e6..55059cde42 100755 --- a/Open-ILS/src/templates-bootstrap/opac/myopac/circ_history/export.tt2 +++ b/Open-ILS/src/templates-bootstrap/opac/myopac/circ_history/export.tt2 @@ -28,7 +28,7 @@ [%- date.format(ctx.parse_datetime(circ.circ.xact_start), DATE_FORMAT) | csv-%] [%- date.format(ctx.parse_datetime(circ.circ.due_date), DATE_FORMAT) | csv -%] [%- IF circ.circ.checkin_time; - date.format(ctx.parse_datetime(circ.checkin_time), DATE_FORMAT) | csv; + date.format(ctx.parse_datetime(circ.circ.checkin_time), DATE_FORMAT) | csv; ELSE; -%] , [%- END -%] -- 2.11.0