From 44d2303ef7397e352c889ce2405b4d01e9f11fbe Mon Sep 17 00:00:00 2001 From: Pedro Amorim Date: Wed, 21 Feb 2024 13:03:13 +0000 Subject: [PATCH] Bug 36142: recallsview template param for opac-recall.tt Test plan: 1) Enable UseRecalls 2) Visit OPAC confirm recall page: /cgi-bin/koha/opac-recall.pl?biblionumber=76 3) Notice left-side menu 'Recalls history' is not active 4) Apply patch. Repeat. Signed-off-by: David Nind Signed-off-by: Marcel de Rooy Signed-off-by: Katrin Fischer --- opac/opac-recall.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/opac/opac-recall.pl b/opac/opac-recall.pl index e7085a4e59..eed014cbf5 100755 --- a/opac/opac-recall.pl +++ b/opac/opac-recall.pl @@ -137,4 +137,6 @@ if ( C4::Context->preference('UseRecalls') ) { ); } +$template->param( recallsview => 1 ); + output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 }; -- 2.39.5