[HttpKernel] Fix call to Memcached::set() once again

I originally fixed this in #3358, but it appears #3363 (which touched the same line) was merged soon after.
This commit is contained in:
Jeremy Mikola 2012-02-23 13:15:05 -05:00
parent be92973512
commit 15c6ba93f6
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
/**