- QUickfix on cache_limiter for sessions

This commit is contained in:
Dave Mc Nicoll 2021-10-19 12:42:27 +00:00
parent 754349f523
commit 13a6c48316
1 changed files with 4 additions and 1 deletions

View File

@ -65,7 +65,10 @@ class Session
}
session_name($options['name']);
if ( isset($options['cache_limiter']) ) {
session_cache_limiter($options['cache_limiter'] ?? 'nocache');
}
session_start();
}