diff options
author | Antoine Hérault <antoine.herault@gmail.com> | 2011-06-25 18:01:08 +0200 |
---|---|---|
committer | Antoine Hérault <antoine.herault@gmail.com> | 2011-06-25 18:01:08 +0200 |
commit | 801b99f3ca51f4b4d3be3866089f138179059a6c (patch) | |
tree | 1b8fe48fec817e819e4afa8431ee5206e85af923 /Http/EntryPoint | |
parent | f9634377814396a61847364e65d8c3182f103fea (diff) | |
download | symfony-security-801b99f3ca51f4b4d3be3866089f138179059a6c.zip symfony-security-801b99f3ca51f4b4d3be3866089f138179059a6c.tar.gz symfony-security-801b99f3ca51f4b4d3be3866089f138179059a6c.tar.bz2 |
[Security] Fix http form authentication entry point
Diffstat (limited to 'Http/EntryPoint')
-rw-r--r-- | Http/EntryPoint/FormAuthenticationEntryPoint.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Http/EntryPoint/FormAuthenticationEntryPoint.php b/Http/EntryPoint/FormAuthenticationEntryPoint.php index 1a35784..2170e9e 100644 --- a/Http/EntryPoint/FormAuthenticationEntryPoint.php +++ b/Http/EntryPoint/FormAuthenticationEntryPoint.php @@ -51,7 +51,7 @@ class FormAuthenticationEntryPoint implements AuthenticationEntryPointInterface public function start(Request $request, AuthenticationException $authException = null) { if ($this->useForward) { - $path = $this->httpUtils->createRequest($request, $this->loginPath); + $subRequest = $this->httpUtils->createRequest($request, $this->loginPath); return $this->httpKernel->handle($subRequest, HttpKernelInterface::SUB_REQUEST); } |