From 4c0c67ca40e9634450290d5e6a25c72e40013687 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 14 Feb 2024 10:33:11 +0100 Subject: [PATCH] Bug 36092: Pass the sessionID from checkauth if we hit auth If we hit the auth page we were not passing sessionID to the template --- C4/Auth.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/C4/Auth.pm b/C4/Auth.pm index ffeb0ab81cf..57fd8cfba4a 100644 --- a/C4/Auth.pm +++ b/C4/Auth.pm @@ -1512,8 +1512,9 @@ sub checkauth { $template->param( LibraryName => C4::Context->preference("LibraryName"), + %info, + sessionID => $session->id, ); - $template->param(%info); if ( $params->{do_not_print} ) { # This must be used for testing purpose only! -- 2.34.1