From 481f9af96eb3c95ace3548412e47b105ebb1bdfd Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Wed, 21 Oct 2020 12:07:19 +0000 Subject: [PATCH] Bug 26763: Use standard information style for multi-hold message This patch modifies the markup of the message which is displayed when the patron tries to place a hold on a title they already have a hold on. Now the message is styled consistently with other similar messages. To test, apply the patch and follow the steps used to test Bug 19718: - In Administration -> Circulation and fine rules, set a rule to allow multiple holds on a title. - Log in to the OPAC as a user covered by the above rule and locate a bibliographic record on which multiple holds can be placed. - Place a hold on the record. - Return to the record details for that title and place another hold. - You should see a correctly-styled message about having at least one other hold on the record. --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt index 1b9dd3bdee..5dc03cf521 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt @@ -167,7 +167,7 @@ [% IF ( bibitemloo.holdable ) %]
[% IF bibitemloo.forced_hold_level %] -

+
[% IF bibitemloo.forced_hold_level == 'item' %] You already have at least one item level hold on this title. All further holds must be item level. @@ -175,7 +175,7 @@ You already have at least one record level hold on this title. All further holds must be record level. [% END %] -

+
[% END %]

-- 2.11.0