From 6fd11fb40beb6c42d44a3538104d76d9de542b1e 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 Content-Type: text/plain; charset=utf-8 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 --- 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.30.2