From 981ab530d3794cc248f3cb7b3a0706deebe9fc4f Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Fri, 20 Jan 2023 16:30:02 +0000 Subject: [PATCH] Bug 32661: (follow-up) Use more unique variable name to avoid collisions --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoices.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoices.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoices.tt index 8df2db4ed1..9dcdbadd0c 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoices.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoices.tt @@ -137,11 +137,11 @@ [% WRAPPER tabs id= "invoicestabs" %] [% WRAPPER tabs_nav %] - [% WRAPPER tab_item tabname= "opened" active= 1 %] Open invoices ([% openedinvoices.size || 0 | html %]) [% END %] + [% WRAPPER tab_item tabname= "opened" bt_active= 1 %] Open invoices ([% openedinvoices.size || 0 | html %]) [% END %] [% WRAPPER tab_item tabname= "closed" %] Closed invoices ([% closedinvoices.size || 0 | html %]) [% END %] [% END %] [% WRAPPER tab_panels %] - [% WRAPPER tab_panel tabname="opened" active= 1 %] + [% WRAPPER tab_panel tabname="opened" bt_active= 1 %] [% IF openedinvoices %] [% INCLUDE invoices_table invoices = openedinvoices %] [% ELSE %] -- 2.20.1