summaryrefslogtreecommitdiffstats
path: root/Http
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2012-01-17 10:55:12 +0100
committerFabien Potencier <fabien.potencier@gmail.com>2012-01-17 10:56:02 +0100
commitf90a38d004b2bc3afdf3dd762d3158e2da6b9c27 (patch)
tree8ae616c3c5d822704a9f046d5c585642a4801a03 /Http
parent5f9481a29933e4432c76503f3bec4d2d592f8be4 (diff)
downloadsymfony-security-f90a38d004b2bc3afdf3dd762d3158e2da6b9c27.zip
symfony-security-f90a38d004b2bc3afdf3dd762d3158e2da6b9c27.tar.gz
symfony-security-f90a38d004b2bc3afdf3dd762d3158e2da6b9c27.tar.bz2
fixed CSv2.0.10
Diffstat (limited to 'Http')
-rw-r--r--Http/Firewall/ExceptionListener.php2
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);