diff options
| author | Tim Graham <timograham@gmail.com> | 2015-10-29 16:56:16 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-10-29 17:28:37 -0400 |
| commit | abf5ccc29c45d53ec17541179bb5f0a75b28915d (patch) | |
| tree | bd4871b83a366f1a47b8aab62685b194e77be912 /docs/ref | |
| parent | 7d81ee6efc385f7d4c1218639e4102c64495ba0f (diff) | |
Fixed #25489 -- Documented that SESSION_SAVE_EVERY_REQUEST doesn't create empty sessions.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/settings.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt index 705cecbb57..a0dfc7e83f 100644 --- a/docs/ref/settings.txt +++ b/docs/ref/settings.txt @@ -2915,7 +2915,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 |
