- QUickfix on cache_limiter for sessions
This commit is contained in:
parent
754349f523
commit
13a6c48316
|
@ -65,7 +65,10 @@ class Session
|
||||||
}
|
}
|
||||||
|
|
||||||
session_name($options['name']);
|
session_name($options['name']);
|
||||||
session_cache_limiter($options['cache_limiter'] ?? 'nocache');
|
|
||||||
|
if ( isset($options['cache_limiter']) ) {
|
||||||
|
session_cache_limiter($options['cache_limiter'] ?? 'nocache');
|
||||||
|
}
|
||||||
session_start();
|
session_start();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue