From 16dd17431084ba758e6b455f1d93f33ef1c0c6d4 Mon Sep 17 00:00:00 2001 From: Per Larsson Date: Fri, 23 Feb 2024 14:29:48 +0100 Subject: [PATCH] Bug 36442: Fix typo in edifact list To test: 1) Create an edifact message 2) Go to the acquisition EDIFACT messages page and verify the basket link is broken 3) Apply patch 4) Verify the link now works Sponsored-by: Gothenburg University Library --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/edifactmsgs.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/edifactmsgs.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/edifactmsgs.tt index 2169b31ae75..5a55f8f039f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/edifactmsgs.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/edifactmsgs.tt @@ -129,7 +129,7 @@ let rendered = ''; if ( row.type == 'QUOTE' || row.type == 'ORDERS' ) { if ( row.basket_id ) { - rendered = ''+_("Basket")+': '+row.basket_id+''; + rendered = ''+_("Basket")+': '+row.basket_id+''; } } else { rendered = ''+_("Invoices")+''; -- 2.43.0