From 646a070648d2d05cac0a847e2505c45783390c6b Mon Sep 17 00:00:00 2001 From: Christopher Burger Date: Mon, 17 Sep 2018 14:32:33 -0400 Subject: [PATCH] RT# 39340 - fixed skin_info caching issue --- FS/FS/ClientAPI/MyAccount.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FS/FS/ClientAPI/MyAccount.pm b/FS/FS/ClientAPI/MyAccount.pm index 5bccad199..c1b6ec204 100644 --- a/FS/FS/ClientAPI/MyAccount.pm +++ b/FS/FS/ClientAPI/MyAccount.pm @@ -106,7 +106,7 @@ sub skin_info { $p->{'agentnum'} = $agentnum; my $conf = new FS::Conf; - + my $timeout = $conf->config('selfservice-session_timeout') || '1 hour'; #false laziness w/Signup.pm my $skin_info_cache_agent = _cache->get("skin_info_cache_agent$agentnum"); @@ -149,7 +149,7 @@ sub skin_info { 'menu' => _menu($domain,$menu), }; - _cache->set("skin_info_cache_agent$agentnum", $skin_info_cache_agent); + _cache->set("skin_info_cache_agent$agentnum", $skin_info_cache_agent, $timeout); } -- 2.11.0