View | Details | Raw Unified | Return to bug 17261
Collapse All | Expand All

(-)a/about.pl (-3 / +2 lines)
Lines 72-79 if ( any { /(^psgi\.|^plack\.)/i } keys %ENV ) { Link Here
72
}
72
}
73
73
74
# Memcached configuration
74
# Memcached configuration
75
my $memcached_servers   = $ENV{MEMCACHED_SERVERS} // C4::Context->config('memcached_servers');
75
my $memcached_servers   = $ENV{MEMCACHED_SERVERS} || C4::Context->config('memcached_servers');
76
my $memcached_namespace = $ENV{MEMCACHED_NAMESPACE} // C4::Context->config('memcached_namespace');
76
my $memcached_namespace = $ENV{MEMCACHED_NAMESPACE} || C4::Context->config('memcached_namespace') // 'koha';
77
77
78
my $effective_caching_method = ref(Koha::Caches->get_instance->cache);
78
my $effective_caching_method = ref(Koha::Caches->get_instance->cache);
79
79
80
- 

Return to bug 17261