Skip to content
Snippets Groups Projects
Commit 82391aef authored by Tim van Dijen's avatar Tim van Dijen Committed by Tim van Dijen
Browse files

Fix undefined variable

parent 3e95752f
No related branches found
No related tags found
No related merge requests found
...@@ -6,6 +6,12 @@ SimpleSAMLphp changelog ...@@ -6,6 +6,12 @@ SimpleSAMLphp changelog
This document lists the changes between versions of SimpleSAMLphp. This document lists the changes between versions of SimpleSAMLphp.
See the upgrade notes for specific information about upgrading. See the upgrade notes for specific information about upgrading.
## Version 1.19.3
Released TBD
* Fixed a wrong variable name introduced in v1.19.2 (#1480) that rendered the PHP session handler useless.
## Version 1.19.2 ## Version 1.19.2
Released 2021-10-27 Released 2021-10-27
......
...@@ -162,7 +162,7 @@ class SessionHandlerPHP extends SessionHandler ...@@ -162,7 +162,7 @@ class SessionHandlerPHP extends SessionHandler
{ {
if ($this->hasSessionCookie()) { if ($this->hasSessionCookie()) {
session_regenerate_id(false); session_regenerate_id(false);
$session_id = session_id(); $sessionId = session_id();
} else { } else {
// generate new (secure) session id // generate new (secure) session id
$sid_length = intval(ini_get('session.sid_length')); $sid_length = intval(ini_get('session.sid_length'));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment