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 2ec0b75 + fb83a88 commit 1a50f12Copy full SHA for 1a50f12
CHANGELOG.md
@@ -5,6 +5,7 @@ Yii Framework 2 redis extension Change Log
5
-----------------------
6
7
- Bug #37: Fixed detection of open socket (mirocow)
8
+- Bug #46: Fixed bug to execute session_regenerate_id in PHP 7.0 (githubjeka)
9
- Chg #14: Added missing `BLPOP` to `$redisCommands` (samdark)
10
11
2.0.4 May 10, 2015
Session.php
@@ -116,7 +116,7 @@ public function readSession($id)
116
{
117
$data = $this->redis->executeCommand('GET', [$this->calculateKey($id)]);
118
119
- return $data === false ? '' : $data;
+ return $data === false || $data === null ? '' : $data;
120
}
121
122
/**
0 commit comments