Skip to content

Commit

Permalink
Remove ini_set('session.save_handler').
Browse files Browse the repository at this point in the history
This chokes on PHP7.2 and appears to be unnecessary.

See also: symphonycms/symphonycms#2783
  • Loading branch information
KimTheFirst committed Apr 30, 2018
1 parent d1a72d2 commit d1ac57c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/Horde/SessionHandler.php
Expand Up @@ -92,7 +92,6 @@ public function __construct(Horde_SessionHandler_Storage $storage,
$this->_storage = $storage;

if (empty($this->_params['noset'])) {
ini_set('session.save_handler', 'user');
session_set_save_handler(
array($this, 'open'),
array($this, 'close'),
Expand Down

0 comments on commit d1ac57c

Please sign in to comment.