diff options
-rw-r--r-- | lib/private/Session/Internal.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/Session/Internal.php b/lib/private/Session/Internal.php index 5fb9b05c5f4..c0c72d1ce01 100644 --- a/lib/private/Session/Internal.php +++ b/lib/private/Session/Internal.php @@ -52,6 +52,7 @@ class Internal extends Session { public function __construct(string $name) { set_error_handler([$this, 'trapError']); $this->invoke('session_name', [$name]); + $this->invoke('session_cache_limiter', ['']); try { $this->startSession(); } catch (\Exception $e) { |