From 11c3ee3cde513cf06e07e511bb5fb3feccfbee65 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Tue, 8 Apr 2025 22:22:32 +0000 Subject: [PATCH] Bug 39588: Fix concatenation in bookings to collect 1. Turn on bookings for an item or item type 2. Find an item and book it. 3. Check the same item out. 4. Go to Circulation > Bookings to collect and run the report 5. The table never loads 6. APPLY PATCH 7. Try again, the bookings to collect report should load! Signed-off-by: Andrew Fuerste Henry --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingbookings.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingbookings.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingbookings.tt index ec56c04849..1237309801 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingbookings.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingbookings.tt @@ -237,7 +237,7 @@ "render": function(data,type,row,meta) { if ( row.item ) { if ( row.item.checked_out_date ) { - return _("On loan, due: ") . $date(row.item.checked_out_date); + return _("On loan, due: ") + $date(row.item.checked_out_date); } else { return row.item._strings.location.str; } -- 2.39.5