fix the updating of timestamp in the MemcachedSessionHandler

This commit is contained in:
Alessandro Loffredo 2018-03-07 14:52:09 +01:00
parent 07cccd53df
commit d007469877

View File

@ -80,7 +80,9 @@ class MemcachedSessionHandler extends AbstractSessionHandler
*/
public function updateTimestamp($sessionId, $data)
{
return $this->memcached->touch($this->prefix.$sessionId, time() + $this->ttl);
$this->memcached->touch($this->prefix.$sessionId, time() + $this->ttl);
return true;
}
/**