Missing $

8.0.x
Greg Dunlap 2011-12-07 22:16:29 +01:00
parent 66efb79c91
commit d92f9d511c
1 changed files with 1 additions and 1 deletions

View File

@ -470,7 +470,7 @@ class DrupalDatabaseCache implements DrupalCacheInterface {
// in session.inc. If the data is permanent or we're not enforcing a minimum
// cache lifetime always return the cached data.
$config = config('system.performance');
if ($cache->expire != CACHE_PERMANENT && config->get('caching.cache_lifetime') && $user->cache > $cache->created) {
if ($cache->expire != CACHE_PERMANENT && $config->get('caching.cache_lifetime') && $user->cache > $cache->created) {
// This cache data is too old and thus not valid for us, ignore it.
return FALSE;
}