From 4a0bfafb13ab317711bb688ae22973222ca9dab2 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 16 Apr 2015 16:30:12 +0200 Subject: [PATCH] Bug 6911: (QA follow-up) Reintroduce few lines to avoid regression If you come from the biblio detail page and click on "modification log", you should get the circ menu, not the tools menu. Test plan: 1/ Go on a biblio detail page 2/ Click on the "modification log" tab 3/ You should get the modification log page with the circ menu. Signed-off-by: Tomas Cohen Arazi --- tools/viewlog.pl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/viewlog.pl b/tools/viewlog.pl index 9b81d509d3..c86722645c 100755 --- a/tools/viewlog.pl +++ b/tools/viewlog.pl @@ -194,6 +194,11 @@ if ($do_it) { actions => \@actions, ); + # Used modules + foreach my $module (@modules) { + $template->param( $module => 1 ); + } + output_html_with_http_headers $input, $cookie, $template->output; } else { -- 2.39.5