diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2015-10-05 17:19:10 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2015-10-05 17:19:10 +0200 |
commit | 99d73ecb12dedf5c772aab7f00e7d39b60c5f4ed (patch) | |
tree | 1173b67020a5f5cee99d930f43ad6a593fb4d0f4 /Http/RememberMe/AbstractRememberMeServices.php | |
parent | 88ef04f5d4cc2f895c7d74f6e5ba89255df9dc01 (diff) | |
parent | 427c50c174f7ae307d61a722da4ab53e87819041 (diff) | |
download | symfony-security-99d73ecb12dedf5c772aab7f00e7d39b60c5f4ed.zip symfony-security-99d73ecb12dedf5c772aab7f00e7d39b60c5f4ed.tar.gz symfony-security-99d73ecb12dedf5c772aab7f00e7d39b60c5f4ed.tar.bz2 |
Merge branch '2.7' into 2.8
* 2.7:
[Security][bugfix] "Remember me" cookie cleared on logout with custom "secure"/"httponly" config options [1]
[ci] Use current PHP_BINARY when running ./phpunit
Fixed typos
[UPGRADE-3.0] fix bullet indentation
Fix PropertyAccessor modifying array in object when array key does not exist
[Security] InMemoryUserProvider now concerns whether user's password is changed when refreshing
Diffstat (limited to 'Http/RememberMe/AbstractRememberMeServices.php')
-rw-r--r-- | Http/RememberMe/AbstractRememberMeServices.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Http/RememberMe/AbstractRememberMeServices.php b/Http/RememberMe/AbstractRememberMeServices.php index 04d95ea..3638f0c 100644 --- a/Http/RememberMe/AbstractRememberMeServices.php +++ b/Http/RememberMe/AbstractRememberMeServices.php @@ -304,7 +304,7 @@ abstract class AbstractRememberMeServices implements RememberMeServicesInterface $this->logger->debug('Clearing remember-me cookie.', array('name' => $this->options['name'])); } - $request->attributes->set(self::COOKIE_ATTR_NAME, new Cookie($this->options['name'], null, 1, $this->options['path'], $this->options['domain'])); + $request->attributes->set(self::COOKIE_ATTR_NAME, new Cookie($this->options['name'], null, 1, $this->options['path'], $this->options['domain'], $this->options['secure'], $this->options['httponly'])); } /** |