summaryrefslogtreecommitdiff
path: root/vendor/symfony/http-foundation/Session
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2019-05-10 11:14:08 +0100
committerGreg Roach <fisharebest@webtrees.net>2019-05-10 12:10:23 +0100
commite7686319595e2aac8ce10b4383f91bfbe21d12f5 (patch)
tree8d83ccd670ead58512b1e2f959eb8c6607bccc94 /vendor/symfony/http-foundation/Session
parent3025da2c89a1d3bca885509d14fe72f88f2e989a (diff)
downloadwebtrees-e7686319595e2aac8ce10b4383f91bfbe21d12f5.tar.gz
webtrees-e7686319595e2aac8ce10b4383f91bfbe21d12f5.tar.bz2
webtrees-e7686319595e2aac8ce10b4383f91bfbe21d12f5.zip
Update vendor dependencies
Diffstat (limited to 'vendor/symfony/http-foundation/Session')
-rw-r--r--vendor/symfony/http-foundation/Session/Session.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/vendor/symfony/http-foundation/Session/Session.php b/vendor/symfony/http-foundation/Session/Session.php
index 62ce948b68..867ceba97f 100644
--- a/vendor/symfony/http-foundation/Session/Session.php
+++ b/vendor/symfony/http-foundation/Session/Session.php
@@ -193,9 +193,7 @@ class Session implements SessionInterface, \IteratorAggregate, \Countable
*/
public function save()
{
- if ($this->isStarted()) {
- $this->storage->save();
- }
+ $this->storage->save();
}
/**