mirror of https://github.com/django/django.git
Merge pull request #366 from collinanderson/patch-6
fixed rfc comment typo in middleware/csrf.py
This commit is contained in:
commit
611a2b266b
|
@ -105,7 +105,7 @@ class CsrfViewMiddleware(object):
|
||||||
if getattr(callback, 'csrf_exempt', False):
|
if getattr(callback, 'csrf_exempt', False):
|
||||||
return None
|
return None
|
||||||
|
|
||||||
# Assume that anything not defined as 'safe' by RC2616 needs protection
|
# Assume that anything not defined as 'safe' by RFC2616 needs protection
|
||||||
if request.method not in ('GET', 'HEAD', 'OPTIONS', 'TRACE'):
|
if request.method not in ('GET', 'HEAD', 'OPTIONS', 'TRACE'):
|
||||||
if getattr(request, '_dont_enforce_csrf_checks', False):
|
if getattr(request, '_dont_enforce_csrf_checks', False):
|
||||||
# Mechanism to turn off CSRF checks for test suite.
|
# Mechanism to turn off CSRF checks for test suite.
|
||||||
|
|
Loading…
Reference in New Issue