From 107bd8805a5859e8e510df8c5c7c5047fd4e5ce0 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 21 Sep 2018 18:35:06 -0300 Subject: [PATCH] Bug 21397: Mark "Routing list" tab as active when selected MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit /members/routing-lists.pl?borrowernumber=5 show the different tab of the menu but "Routing lists" is not displayed as the selected one (active). "routinglistview" must be set and passed to the template Test plan: Enable the RoutingSerials pref and hit /members/routing-lists.pl?borrowernumber=42 The "Routing lists" tab must be selected/active Followed test plan and tab now shows as active. Signed-off-by: Dilan Johnpullé Signed-off-by: Katrin Fischer --- members/routing-lists.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/members/routing-lists.pl b/members/routing-lists.pl index c9b514f6f0..51c6645430 100755 --- a/members/routing-lists.pl +++ b/members/routing-lists.pl @@ -55,6 +55,7 @@ $template->param( patron => $patron, findborrower => $findborrower, branch => $branch, # FIXME This is confusing + routinglistview => 1, ); if (C4::Context->preference('ExtendedPatronAttributes')) { -- 2.17.1