merged branch jmikola/patch-2 (PR #3433)

Commits
-------

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

Discussion
----------

[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:
Fabien Potencier 2012-02-23 19:22:16 +01:00
commit 88b40e92d8
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);
}
/**