diff options
author | Christophe Coevoet <stof@notk.org> | 2011-02-10 15:22:02 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2011-02-10 15:32:59 +0100 |
commit | 40698c0c3004d1dd5f83394ba8a0a90918590da8 (patch) | |
tree | 1211b47f9b1b8f05bf2f74afbf254ea848c8c898 /Http | |
parent | d2a36866249540a6e41cdbeb23c99b0a8c0a784e (diff) | |
download | symfony-security-40698c0c3004d1dd5f83394ba8a0a90918590da8.zip symfony-security-40698c0c3004d1dd5f83394ba8a0a90918590da8.tar.gz symfony-security-40698c0c3004d1dd5f83394ba8a0a90918590da8.tar.bz2 |
Fixed access denied handling
Diffstat (limited to 'Http')
-rw-r--r-- | Http/Firewall/ExceptionListener.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Http/Firewall/ExceptionListener.php b/Http/Firewall/ExceptionListener.php index 79e5313..0116b46 100644 --- a/Http/Firewall/ExceptionListener.php +++ b/Http/Firewall/ExceptionListener.php @@ -128,8 +128,6 @@ class ExceptionListener implements ListenerInterface $response = $event->getSubject()->handle($subRequest, HttpKernelInterface::SUB_REQUEST, true); $response->setStatusCode(403); - - return $response; } } catch (\Exception $e) { if (null !== $this->logger) { |