Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 88b40e9

Browse files
committed
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.
2 parents 0ff2197 + 15c6ba9 commit 88b40e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/HttpKernel/Profiler/MemcachedProfilerStorage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ protected function getValue($key)
6767
*/
6868
protected function setValue($key, $value, $expiration = 0)
6969
{
70-
return $this->getMemcached()->set($key, $value, false, time() + $expiration);
70+
return $this->getMemcached()->set($key, $value, time() + $expiration);
7171
}
7272

7373
/**

0 commit comments

Comments
 (0)