summaryrefslogtreecommitdiffstats
path: root/Http/EntryPoint/FormAuthenticationEntryPoint.php
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2011-06-08 10:36:14 +0200
committerFabien Potencier <fabien.potencier@gmail.com>2011-06-08 10:36:14 +0200
commit6e7f927c14efea0b072f143840c77ca21bcc4472 (patch)
tree7f0ac96f5f57c6e229bc1aef7e001a35b1e996e4 /Http/EntryPoint/FormAuthenticationEntryPoint.php
parentd39b5cc88441b4d0966f204a780fe1cb9663b6ab (diff)
downloadsymfony-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/FormAuthenticationEntryPoint.php')
-rw-r--r--Http/EntryPoint/FormAuthenticationEntryPoint.php4
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);