summaryrefslogtreecommitdiff
path: root/docs/ref/settings.txt
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-08-27 05:57:10 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-08-27 05:57:10 +0000
commit5577b96ae4cbbae42fe4c76be1f75b6054b74498 (patch)
tree66d1cc7980c4517a6095a2bda928ff2123092395 /docs/ref/settings.txt
parent4091e6525d030d274787d112c997c6bfd6e1c74a (diff)
Fixed #8526 -- Corrected the default value for the SESSION_FILE_PATH documentation. Thanks, Piotr Lewandowski.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8611 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref/settings.txt')
-rw-r--r--docs/ref/settings.txt6
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
index 72bd97c169..d331a532b0 100644
--- a/docs/ref/settings.txt
+++ b/docs/ref/settings.txt
@@ -919,10 +919,12 @@ SESSION_FILE_PATH
**New in Django development version**
-Default: ``/tmp/``
+Default: ``None``
If you're using file-based session storage, this sets the directory in
-which Django will store session data. See :ref:`topics-http-sessions`.
+which Django will store session data. See :ref:`topics-http-sessions`. When
+the default value (``None``) is used, Django will use the standard temporary
+directory for the system.
.. setting:: SESSION_SAVE_EVERY_REQUEST