From b0163256af42e3da24bd3ccb27e3f44803f22e98 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 5 Jan 2023 18:44:47 +0000 Subject: [PATCH] Bug 32507: (follow-up) Change parameter name to avoid collisions The variable name "active" is very likely to already be set for other reasons, so changing the parameter name to "bc_active" to avoid problems. --- koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers.inc | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/cities.tt | 6 +++--- 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 1d974c8bfa..aa17fd7b90 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers.inc @@ -357,7 +357,7 @@ [%# Used to build individual breadcrumb items in the breadcrumb nav %] [% BLOCK breadcrumb_item %] - [% IF ( active ) %] + [% IF ( bc_active ) %]
  • [% content | $raw %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/cities.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/cities.tt index b71bcd2f72..98235c8215 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/cities.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/cities.tt @@ -33,7 +33,7 @@ [% WRAPPER breadcrumb_item %] Cities [% END %] - [% WRAPPER breadcrumb_item active = 1 %] + [% WRAPPER breadcrumb_item bc_active = 1 %] [% IF city.cityid %] Modify city [% ELSE %] @@ -45,12 +45,12 @@ [% WRAPPER breadcrumb_item %] Cities [% END %] - [% WRAPPER breadcrumb_item active = 1 %] + [% WRAPPER breadcrumb_item bc_active = 1 %] Confirm deletion of city [% END %] [% ELSE %] - [% WRAPPER breadcrumb_item active = 1 %] + [% WRAPPER breadcrumb_item bc_active = 1 %] Cities [% END %] [% END #/IF op = add_form %] -- 2.20.1