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.
1 parent 1446798 commit 57758f5Copy full SHA for 57758f5
lib/storage/sfCacheSessionStorage.class.php
@@ -82,7 +82,7 @@ public function initialize($options = array())
82
83
$cookie = $this->request->getCookie($this->options['session_name']);
84
85
- if (false !== strpos($cookie, ':')) {
+ if (null !== $cookie && false !== strpos($cookie, ':')) {
86
// split cookie data id:signature(id+secret)
87
list($id, $signature) = explode(':', $cookie, 2);
88
0 commit comments