diff --git a/src/Symfony/Component/HttpKernel/Profiler/MemcachedProfilerStorage.php b/src/Symfony/Component/HttpKernel/Profiler/MemcachedProfilerStorage.php index b91582ace5..32f6331b03 100644 --- a/src/Symfony/Component/HttpKernel/Profiler/MemcachedProfilerStorage.php +++ b/src/Symfony/Component/HttpKernel/Profiler/MemcachedProfilerStorage.php @@ -67,7 +67,7 @@ class MemcachedProfilerStorage extends BaseMemcacheProfilerStorage */ protected function setValue($key, $value, $expiration = 0) { - return $this->getMemcached()->set($key, $value, false, time() + $expiration); + return $this->getMemcached()->set($key, $value, time() + $expiration); } /**