From b087860bed88add7863ae83f18ca09407d4612e7 Mon Sep 17 00:00:00 2001 From: David Cook Date: Thu, 15 Feb 2024 22:49:19 +0000 Subject: [PATCH] Bug 36098: Fix storage_method pass --- Koha/Session.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Koha/Session.pm b/Koha/Session.pm index 54290d3df3..d9e9f79dd6 100644 --- a/Koha/Session.pm +++ b/Koha/Session.pm @@ -51,7 +51,8 @@ will be created. =cut sub _get_session_params { - my ( $class, $storage_method ) = @_; + my ( $class, $args ) = @_; + my $storage_method = $args->{storage_method}; $storage_method ||= C4::Context->preference('SessionStorage'); if ( $storage_method eq 'mysql' ) { my $dbh = C4::Context->dbh; -- 2.30.2