diff options
| author | Tim Graham <timograham@gmail.com> | 2017-11-01 10:57:59 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-11-01 10:57:59 -0400 |
| commit | afd375fc343baa46e61036087bc43b3d096bb0ca (patch) | |
| tree | e1af42ebe5f7db72f44e5474cc51a0a4a5719385 /django | |
| parent | cbe334918a0a80762249706a15b699714b5dc828 (diff) | |
Fixed #28741 -- Removed unnecessary leading dot from cross-domain cookie examples.
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 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 |
