Author: mtredinnick Date: 2008-08-27 00:57:10 -0500 (Wed, 27 Aug 2008) New Revision: 8611
Modified: django/trunk/docs/ref/settings.txt Log: Fixed #8526 -- Corrected the default value for the SESSION_FILE_PATH documentation. Thanks, Piotr Lewandowski. Modified: django/trunk/docs/ref/settings.txt =================================================================== --- django/trunk/docs/ref/settings.txt 2008-08-27 05:56:57 UTC (rev 8610) +++ django/trunk/docs/ref/settings.txt 2008-08-27 05:57:10 UTC (rev 8611) @@ -919,10 +919,12 @@ **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 --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-updates?hl=en -~----------~----~----~----~------~----~------~--~---
