From 965a382d02769d39ac61035c4213b359c150f351 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 25 May 2023 13:48:34 +0000 Subject: [PATCH] Bug 33779: Terminology: biblio record This patch corrects a string in the staff interface's ILL requests template. "This item cannot be issued as it has no biblio record associated with it" is updated to read "This item cannot be checked out as it has no bibliographic record associated with it." I don't know how to trigger the error message in the interface, but the change is simple enough that it could be verified by examining the patch. --- 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 53eecd92cd..a5ade70cb3 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 @@ -144,7 +144,7 @@ [% IF !whole.stage || whole.stage == 'form' %]

Issue requested item to [% INCLUDE 'patron-title.inc' patron = request.patron %]

[% IF !request.biblio_id || request.biblio_id.length == 0 %] -
This item cannot be issued as it has no biblio record associated with it
+
This item cannot be checked out as it has no bibliographic record associated with it
[% END %] [% IF whole.value.errors.itemcount %]
The bibliographic record for this request has multiple items, it should only have one. Please fix this then try again.
-- 2.30.2