From d8c9254c76dc963d81d7a9231dfe150f336fb410 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 Signed-off-by: Kyle M Hall Signed-off-by: Martin Renvoize (cherry picked from commit 0decb260343455caabd4101b0b0e9499723f2951) Signed-off-by: Aleisha Amohia (cherry picked from commit 9580111a206522e90a76d0fbaafdaaca0401d6fd) --- C4/Auth.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/C4/Auth.pm b/C4/Auth.pm index bb3f661b14..2096f8a31f 100644 --- a/C4/Auth.pm +++ b/C4/Auth.pm @@ -1488,8 +1488,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.39.5