8000
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 96c5eff commit 211a60eCopy full SHA for 211a60e
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php
@@ -133,7 +133,7 @@ public function gc($maxlifetime)
133
if($this->getCollection() instanceof \MongoDB\Collection)
134
{
135
$this->getCollection()->deleteMany(array(
136
- $this->options['id_field'] => $sessionId,
+ $this->options['expiry_field'] => array('$lt' => new \MongoDate()),
137
));
138
}else{
139
$this->getCollection()->remove(array(
0 commit comments