diff options
author | Andrey Andreev <narf@devilix.net> | 2015-10-18 19:58:38 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2015-10-18 19:58:38 +0200 |
commit | de8b82ca8c4e201ad21c07ca962f5480493143eb (patch) | |
tree | cc56d6013fa964a1eea5e6a25fcc8911546a8f2a /system/libraries/Session | |
parent | 9d02ceafe0aa5ec755f1d8b011cf21f3841191cc (diff) |
Fix #4179
Diffstat (limited to 'system/libraries/Session')
-rw-r--r-- | system/libraries/Session/drivers/Session_database_driver.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/system/libraries/Session/drivers/Session_database_driver.php b/system/libraries/Session/drivers/Session_database_driver.php index 1d01c2923..72b39d12d 100644 --- a/system/libraries/Session/drivers/Session_database_driver.php +++ b/system/libraries/Session/drivers/Session_database_driver.php @@ -159,6 +159,10 @@ class CI_Session_database_driver extends CI_Session_driver implements SessionHan if (($result = $this->_db->get()->row()) === NULL) { + // PHP7 will reuse the same SessionHandler object after + // ID regeneration, so we need to explicitly set this to + // FALSE instead of relying on the default ... + $this->_row_exists = FALSE; $this->_fingerprint = md5(''); return ''; } |