From 42e5d1b76452ac3a347fdac6c3898dc1328a3b1f Mon Sep 17 00:00:00 2001 From: Fabricio Molina Date: Mon, 30 Oct 2023 17:50:00 -0300 Subject: [PATCH] Bug 28805: (follow-up) Fix template logic error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patch fixes a problem in the template logic that made the 'Due date' legend display when `OnSiteCheckouts` and `SpecifyDueDate` are not set, as highlighted by QA. Sponsored-by: Banco Central de la República Argentina Signed-off-by: Nick Clemens --- .../prog/en/modules/circ/circulation_batch_checkouts.tt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt index a2324ca5d75..59ab59ee68f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt @@ -100,10 +100,11 @@ + [% IF Koha.Preference('SpecifyDueDate') || Koha.Preference('OnSiteCheckouts') %]
- Due date
    [% IF Koha.Preference('SpecifyDueDate') %] + Due date
  1. @@ -119,6 +120,7 @@ [% END %]
+ [% END %] -- 2.30.2