From 817f3bf6be79856e8d9497f74cc66a47b99b11e2 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 7 Aug 2025 16:40:20 +0000 Subject: [PATCH] Bug 40600: Fix typo in ILL request template This patch fixes a typo in the staff interface's ILL request template, removing an extra word. I'm not sure how to test the patch via the interface. It looks like 'mark_completed' action doesn't involve a confirmation step, so the relevant case in the breadcrumbs menu logic doesn't ever get triggered. However, examining the patch should be sufficient for QA. Sponsored-by: Athens County Public Libraries --- koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt index a8bd0f4d995..b5cfe2c8680 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt @@ -46,7 +46,7 @@ [% ELSIF op == 'confirm' %] Confirm request [% request.id_prefix _ request.illrequest_id | html %] [% ELSIF op == 'mark_completed' %] - Complete request request [% request.id_prefix _ request.illrequest_id | html %] + Complete request [% request.id_prefix _ request.illrequest_id | html %] [% ELSIF op == 'delete_confirm' %] Delete request [% request.id_prefix _ request.illrequest_id | html %] [% ELSIF op == 'generic_confirm' %] -- 2.39.5