From 5577b96ae4cbbae42fe4c76be1f75b6054b74498 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Wed, 27 Aug 2008 05:57:10 +0000 Subject: [PATCH] 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 --- docs/ref/settings.txt | 6 ++++-- 1 file 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