summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/ClientAPI_SessionCache.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/ClientAPI_SessionCache.pm b/FS/FS/ClientAPI_SessionCache.pm
index b722484ec..bfab8055d 100644
--- a/FS/FS/ClientAPI_SessionCache.pm
+++ b/FS/FS/ClientAPI_SessionCache.pm
@@ -8,7 +8,7 @@ use FS::UID qw(datasrc);
install_callback FS::UID sub {
my $conf = new FS::Conf;
$module = $conf->config('selfservice_server-cache_module')
- || 'Cache::SharedMemoryCache';
+ || 'Cache::FileCache';
};
=head1 NAME
@@ -39,7 +39,7 @@ sub new {
eval "use $module;";
die $@ if $@;
my $self = $module->new(@_);
- $self->set_cache_root('/usr/local/etc/freeside/clientapi_session.'.datasrc)
+ $self->set_cache_root('%%%FREESIDE_CACHE%%%/clientapi_session.'.datasrc)
if $module =~ /^Cache::FileCache$/;
$self;
} else {