diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2012-01-17 10:55:12 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2012-01-17 10:56:02 +0100 |
commit | f90a38d004b2bc3afdf3dd762d3158e2da6b9c27 (patch) | |
tree | 8ae616c3c5d822704a9f046d5c585642a4801a03 | |
parent | 5f9481a29933e4432c76503f3bec4d2d592f8be4 (diff) | |
download | symfony-security-f90a38d004b2bc3afdf3dd762d3158e2da6b9c27.zip symfony-security-f90a38d004b2bc3afdf3dd762d3158e2da6b9c27.tar.gz symfony-security-f90a38d004b2bc3afdf3dd762d3158e2da6b9c27.tar.bz2 |
fixed CSv2.0.10
-rw-r--r-- | Http/Firewall/ExceptionListener.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Http/Firewall/ExceptionListener.php b/Http/Firewall/ExceptionListener.php index 1535b9b..f61df81 100644 --- a/Http/Firewall/ExceptionListener.php +++ b/Http/Firewall/ExceptionListener.php @@ -163,7 +163,7 @@ class ExceptionListener if ($authException instanceof AccountStatusException && ($token = $this->context->getToken()) instanceof UsernamePasswordToken) { // remove the security token to prevent infinite redirect loops $this->context->setToken(null); - $request->getSession()->remove('_security_' . $token->getProviderKey()); + $request->getSession()->remove('_security_'.$token->getProviderKey()); } return $this->authenticationEntryPoint->start($request, $authException); |