From 226558151066a0f1c7d9b5b16db9eefaf8d39db9 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 Signed-off-by: Kristi Krueger Signed-off-by: Martin Renvoize --- 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 ec56c048491..12373098013 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.49.0