8000 Session cleanup by stof · Pull Request #3333 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Session cleanup #3333

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Feb 12, 2012
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
[HttpFoundation] Fixed closeSession for the Memcached storage
  • Loading branch information
stof committed Feb 12, 2012
commit 2c767d163b5c3515853487556b5c2a21f7e4c158
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public function openSession($savePath, $sessionName)
*/
public function closeSession()
{
return $this->memcached->close();
return true;
}

/**
Expand Down
0