From d10d24e42aaaf4b2e23b52b94aa14ab8745b396f Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Wed, 21 Oct 2020 11:57:26 +0000 Subject: [PATCH] Bug 26762: Modify template logic in opac-reserves.tt to avoid error This patch makes a change to the OPAC hold template to prevent certain cases where the output is invalid. To reproduce, perform a search in the OPAC which will return some titles which can be placed on hold and some which cannot. - Select all results (some holdable, some not) - Click the "Place hold" link - On the "Confirm holds" page the layout will be broken after the first instance of the message "There are no items that can be placed on hold." To test, apply the patch and repeat the process above. After the patch has been applied the "confirm holds" page should look correct. Validating the HTML source should return no errors. Signed-off-by: David Nind Signed-off-by: Katrin Fischer Signed-off-by: Jonathan Druart --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 87559d81bd..f039ae49ab 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt @@ -164,7 +164,6 @@
[% FOREACH bibitemloo IN bibitemloop %] - [% IF ( bibitemloo.holdable ) %]
[% IF bibitemloo.forced_hold_level %]

@@ -178,6 +177,7 @@

[% END %]

+ [% IF ( bibitemloo.holdable ) %] -- 2.39.5