@@ -, +, @@ collisions --- koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers.inc | 8 ++++---- koha-tmpl/intranet-tmpl/prog/en/modules/about.tt | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers.inc +++ a/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 ] @@ -374,7 +374,7 @@ [% END %] [% BLOCK tab_item %] - [% IF ( active ) %] + [% IF ( bt_active ) %]
  • @@ -392,7 +392,7 @@ [% END %] [% BLOCK tab_panel %] - [% IF ( active ) %] + [% IF ( bt_active ) %]
    [% ELSE %]
    --- a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt +++ a/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 %] --
    Server information