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:29:16 -0400 |
| commit | adc9fa8324f087e822653894bd0b97df8601b5cd (patch) | |
| tree | 2c10501d4abe18c73b3f7aa9d56beb59a0cd8399 /docs/ref/settings.txt | |
| parent | 6eaf43a24471f98939da18d031b4f0b4e49640c6 (diff) | |
[1.9.x] Fixed #25489 -- Documented that SESSION_SAVE_EVERY_REQUEST doesn't create empty sessions.
Backport of abf5ccc29c45d53ec17541179bb5f0a75b28915d from master
Diffstat (limited to 'docs/ref/settings.txt')
| -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 6a398e1c60..75ea880932 100644 --- a/docs/ref/settings.txt +++ b/docs/ref/settings.txt @@ -3095,7 +3095,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 |
