From: Chris Sharp <csharp@georgialibraries.org>
Date: Wed, 15 Dec 2021 13:49:28 +0000 (-0500)
Subject: LP#1954923: Fix current date issue in Boostrap OPAC Circ History CSV export
X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=e08d76965aaa5c30d1344e6d778577803b2d0723;p=working%2FEvergreen.git

LP#1954923: Fix current date issue in Boostrap OPAC Circ History CSV export

Signed-off-by: Chris Sharp <csharp@georgialibraries.org>
Signed-off-by: Garry Collum <gcollum@gmail.com>
Signed-off-by: Michele Morgan <mmorgan@noblenet.org>
---

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 -%]