diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2011-06-08 10:36:14 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2011-06-08 10:36:14 +0200 |
commit | 6e7f927c14efea0b072f143840c77ca21bcc4472 (patch) | |
tree | 7f0ac96f5f57c6e229bc1aef7e001a35b1e996e4 /Http/EntryPoint | |
parent | d39b5cc88441b4d0966f204a780fe1cb9663b6ab (diff) | |
download | symfony-security-6e7f927c14efea0b072f143840c77ca21bcc4472.zip symfony-security-6e7f927c14efea0b072f143840c77ca21bcc4472.tar.gz symfony-security-6e7f927c14efea0b072f143840c77ca21bcc4472.tar.bz2 |
[Security] fixed sub-requests creation (closes #1212)
Diffstat (limited to 'Http/EntryPoint')
-rw-r--r-- | Http/EntryPoint/FormAuthenticationEntryPoint.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Http/EntryPoint/FormAuthenticationEntryPoint.php b/Http/EntryPoint/FormAuthenticationEntryPoint.php index 057de2d..6301606 100644 --- a/Http/EntryPoint/FormAuthenticationEntryPoint.php +++ b/Http/EntryPoint/FormAuthenticationEntryPoint.php @@ -50,7 +50,9 @@ class FormAuthenticationEntryPoint implements AuthenticationEntryPointInterface { $path = str_replace('{_locale}', $request->getSession()->getLocale(), $this->loginPath); if ($this->useForward) { - return $this->httpKernel->handle(Request::create($path), HttpKernelInterface::SUB_REQUEST); + $subRequest = Request::create($path, 'get', array(), $request->cookies->all(), array(), $request->server->all()); + + return $this->httpKernel->handle($subRequest, HttpKernelInterface::SUB_REQUEST); } return new RedirectResponse(0 !== strpos($path, 'http') ? $request->getUriForPath($path) : $path, 302); |