summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-11-01 10:57:59 -0400
committerGitHub <noreply@github.com>2017-11-01 10:57:59 -0400
commitafd375fc343baa46e61036087bc43b3d096bb0ca (patch)
treee1af42ebe5f7db72f44e5474cc51a0a4a5719385 /django
parentcbe334918a0a80762249706a15b699714b5dc828 (diff)
Fixed #28741 -- Removed unnecessary leading dot from cross-domain cookie examples.
Diffstat (limited to 'django')
-rw-r--r--django/conf/global_settings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/conf/global_settings.py b/django/conf/global_settings.py
index 8e57f5f5db..544cbc10cb 100644
--- a/django/conf/global_settings.py
+++ b/django/conf/global_settings.py
@@ -452,7 +452,7 @@ SESSION_CACHE_ALIAS = 'default'
SESSION_COOKIE_NAME = 'sessionid'
# Age of cookie, in seconds (default: 2 weeks).
SESSION_COOKIE_AGE = 60 * 60 * 24 * 7 * 2
-# A string like ".example.com", or None for standard domain cookie.
+# A string like "example.com", or None for standard domain cookie.
SESSION_COOKIE_DOMAIN = None
# Whether the session cookie should be secure (https:// only).
SESSION_COOKIE_SECURE = False