[HttpFoundation][Session] change possible replace() & set() for set only()

This commit is contained in:
Victor Berchet 2012-05-04 17:40:07 +02:00
parent 919604ab71
commit 72d21c6614

View File

@ -117,11 +117,7 @@ class MemcacheSessionHandler implements \SessionHandlerInterface
*/
public function write($sessionId, $data)
{
if (!$this->memcache->replace($this->prefix.$sessionId, $data, 0, $this->memcacheOptions['expiretime'])) {
return $this->memcache->set($this->prefix.$sessionId, $data, 0, $this->memcacheOptions['expiretime']);
}
return true;
return $this->memcache->set($this->prefix.$sessionId, $data, 0, $this->memcacheOptions['expiretime']);
}
/**