From 2af660a57e61333b18ea63d695b080c0bd311d0f Mon Sep 17 00:00:00 2001 From: David Cook Date: Wed, 7 Jun 2023 05:30:40 +0000 Subject: [PATCH] Bug 33933: Only show use restriction once on OPAC detail page This patch removes a regression from bug 32611 that caused the use restriction text to be shown twice for "Available" items. Test plan: 0. Apply patch 1. Go to http://localhost:8081/cgi-bin/koha/cataloguing/additem.pl?biblionumber=29 2. Edit item and add "Restricted access" for "5 - Use restrictions" 3. Go to http://localhost:8080/cgi-bin/koha/opac-detail.pl?biblionumber=29 4. Note that "Status" says "Available (Restricted access)" and there is no duplicate "Restricted access" at the top of that table cell --- koha-tmpl/opac-tmpl/bootstrap/en/includes/item-status.inc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/item-status.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/item-status.inc index aac8ece2ee..2d19d918ce 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/item-status.inc +++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/item-status.inc @@ -103,10 +103,6 @@ [% ELSIF item.itemtype.notforloan %] [% SET itemavailable = 0 %] Not for loan [% IF restricted_lib %]([% restricted_lib | html %])[% END %] -[% ELSE %] - [% IF restricted_lib %] - [% restricted_lib | html %] - [% END %] [% END %] [% IF ( item.bundle_host ) %] -- 2.30.2