We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cc8f0d6 + c5ffcf0 commit 1de7a72Copy full SHA for 1de7a72
lib/internal/Magento/Framework/Session/SessionManager.php
@@ -1,7 +1,7 @@
1
<?php
2
/**
3
- * Copyright © Magento, Inc. All rights reserved.
4
- * See COPYING.txt for license details.
+ * Copyright 2013 Adobe
+ * All Rights Reserved.
5
*/
6
namespace Magento\Framework\Session;
7
@@ -258,12 +258,8 @@ private function renewCookie($sid)
258
protected function registerSaveHandler()
259
{
260
return session_set_save_handler(
261
- [$this->saveHandler, 'open'],
262
- [$this->saveHandler, 'close'],
263
- [$this->saveHandler, 'read'],
264
- [$this->saveHandler, 'write'],
265
- [$this->saveHandler, 'destroy'],
266
- [$this->saveHandler, 'gc']
+ $this->saveHandler,
+ true
267
);
268
}
269
0 commit comments