@@ -, +, @@ --- C4/Auth.pm | 3 ++- Koha/Cache.pm | 2 +- reports/guided_reports.pl | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) --- a/C4/Auth.pm +++ a/C4/Auth.pm @@ -32,6 +32,7 @@ use C4::Languages; use C4::Branch; # GetBranches use C4::Search::History; use Koha; +use Koha::Caches; use Koha::AuthUtils qw(hash_password); use Koha::LibraryCategories; use Koha::Libraries; @@ -1725,7 +1726,7 @@ sub get_session { elsif ( $storage_method eq 'Pg' ) { $session = new CGI::Session( "driver:PostgreSQL;serializer:yaml;id:md5", $sessionID, { Handle => $dbh } ); } - elsif ( $storage_method eq 'memcached' && C4::Context->ismemcached ) { + elsif ( $storage_method eq 'memcached' && Koha::Caches->get_instance->memcached_cache ) { $session = new CGI::Session( "driver:memcached;serializer:yaml;id:md5", $sessionID, { Memcached => C4::Context->memcached } ); } else { --- a/Koha/Cache.pm +++ a/Koha/Cache.pm @@ -84,7 +84,7 @@ sub new { unless ( $self->{namespace} and @servers ) { my $koha_config = Koha::Config->read_from_file( Koha::Config->guess_koha_conf() ); $self->{namespace} ||= $koha_config->{config}{memcached_namespace} || 'koha'; - @servers ||= split /,/, $koha_config->{config}{memcached_servers}; + @servers = split /,/, $koha_config->{config}{memcached_servers} unless @servers; } $self->{namespace} .= ":$subnamespace:"; --- a/reports/guided_reports.pl +++ a/reports/guided_reports.pl @@ -31,6 +31,7 @@ use C4::Debug; use C4::Koha qw/GetFrameworksLoop/; use C4::Branch; use C4::Context; +use Koha::Caches; use C4::Log; use Koha::DateUtils qw/dt_from_string output_pref/; use Koha::AuthorisedValue; @@ -47,7 +48,7 @@ Script to control the guided report creation =cut my $input = new CGI; -my $usecache = C4::Context->ismemcached; +my $usecache = Koha::Caches->get_instance->memcached_cache; my $phase = $input->param('phase') // ''; my $flagsrequired; --