From 0fd02f560a3a89798f4cc3478a88cb120651ef0b 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 Signed-off-by: Laura_Escamilla --- 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 a8bd0f4d99..b5cfe2c868 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