diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2005-12-09 03:39:31 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2005-12-09 03:39:31 +0000 |
| commit | e6745d34202d02bc48b2c9f133f389cf8a4cddb3 (patch) | |
| tree | 6c2ed430996167ece380b59d24a6d22866230c69 /django | |
| parent | 06a2dc42b2aad23550e378b6a4dd65bd930133a3 (diff) | |
Fixed #857 -- Changed default session cookie name from hotclub to sessionid. Django is now 10% less pornish.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1584 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django')
| -rw-r--r-- | django/conf/global_settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/conf/global_settings.py b/django/conf/global_settings.py index 565f72cfaf..7271f9c69a 100644 --- a/django/conf/global_settings.py +++ b/django/conf/global_settings.py @@ -193,7 +193,7 @@ MIDDLEWARE_CLASSES = ( # SESSIONS # ############ -SESSION_COOKIE_NAME = 'hotclub' # Cookie name. This can be whatever you want. +SESSION_COOKIE_NAME = 'sessionid' # Cookie name. This can be whatever you want. SESSION_COOKIE_AGE = 60 * 60 * 24 * 7 * 2 # Age of cookie, in seconds (default: 2 weeks). SESSION_COOKIE_DOMAIN = None # A string like ".lawrence.com", or None for standard domain cookie. SESSION_SAVE_EVERY_REQUEST = False # Whether to save the session data on every request. |
