From 4a298606fd71921d6e5aa1fb5d3a8034c7b633a7 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Fri, 20 Jan 2023 15:47:08 +0000 Subject: [PATCH] Bug 32571: (follow-up) Use more unique variable name to avoid collisions --- koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers.inc | 4 ++-- koha-tmpl/intranet-tmpl/prog/en/modules/about.tt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers.inc index 32f67bfe4b..ee9cb72141 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers.inc @@ -345,12 +345,12 @@ [%# BOOTSTRAP TAB WRAPPER USAGE [ WRAPPER tabs id= "tabs container id" ] [ WRAPPER tabs_nav ] - [ WRAPPER tab_item tabname= "tab name 1" ] [ content ] [ END ] + [ WRAPPER tab_item tabname= "tab name 1" bt_active= 1 ] [ content ] [ END ] [ WRAPPER tab_item tabname= "tab name 2" ] [ content ] [ END ] ... [ END ] [ WRAPPER tab_panels ] - [ WRAPPER tab_panel id="tab name 1"] [ content ] [ END ] + [ WRAPPER tab_panel id="tab name 1" bt_active= 1 ] [ content ] [ END ] [ WRAPPER tab_panel id="tab name 2"] [ content ] [ END ] ... [ END ] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt index b4031e7792..251446e9ac 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt @@ -32,7 +32,7 @@ [% WRAPPER tabs id= "abouttabs" %] [% WRAPPER tabs_nav %] - [% WRAPPER tab_item tabname= "about" active= 1 %] Server information [% END %] + [% WRAPPER tab_item tabname= "about" bt_active= 1 %] Server information [% END %] [% WRAPPER tab_item tabname= "perl" %] Perl modules [% END %] [% WRAPPER tab_item tabname= "sysinfo" %] System information [% END %] [% WRAPPER tab_item tabname= "team" %] Koha team [% END %] @@ -43,7 +43,7 @@ [% END %] [% WRAPPER tab_panels %] - [% WRAPPER tab_panel tabname= "about" active= 1 %] + [% WRAPPER tab_panel tabname= "about" bt_active= 1 %] -- 2.20.1
Server information