From 69c10412af3ceba7c7013d896f7cb2ce4cd44da3 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=utf8 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 Signed-off-by: Tomas Cohen Arazi --- .../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 a2324ca5d7..59ab59ee68 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.39.2