summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-10-29 16:56:16 -0400
committerTim Graham <timograham@gmail.com>2015-10-29 17:29:21 -0400
commit12f4db23aaabc99e68c13198c8813888da079282 (patch)
tree104700e29a899cb32daad3f40238fbb4d892d433 /docs/ref
parentc42e4e736a587dc9858fe55fb972aefaa065867d (diff)
[1.8.x] Fixed #25489 -- Documented that SESSION_SAVE_EVERY_REQUEST doesn't create empty sessions.
Backport of abf5ccc29c45d53ec17541179bb5f0a75b28915d from master
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/settings.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
index 1ccd16ba48..734218df86 100644
--- a/docs/ref/settings.txt
+++ b/docs/ref/settings.txt
@@ -3166,7 +3166,8 @@ Default: ``False``
Whether to save the session data on every request. If this is ``False``
(default), then the session data will only be saved if it has been modified --
-that is, if any of its dictionary values have been assigned or deleted.
+that is, if any of its dictionary values have been assigned or deleted. Empty
+sessions won't be created, even if this setting is active.
.. setting:: SESSION_SERIALIZER