Skip to content

Commit

Permalink
[Security] added support for the remember_me parameter in the query (c…
Browse files Browse the repository at this point in the history
…loses #3460)
  • Loading branch information
fabpot committed Mar 2, 2012
1 parent ab75727 commit ddeac9a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -283,7 +283,7 @@ protected function isRememberMeRequested(Request $request)
return true;
}

$parameter = $request->request->get($this->options['remember_me_parameter'], null, true);
$parameter = $request->get($this->options['remember_me_parameter'], null, true);

if ($parameter === null && null !== $this->logger) {
$this->logger->debug(sprintf('Did not send remember-me cookie (remember-me parameter "%s" was not sent).', $this->options['remember_me_parameter']));
Expand Down

0 comments on commit ddeac9a

Please sign in to comment.