summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorPreston Holmes <preston@ptone.com>2013-02-23 14:19:01 -0800
committerPreston Holmes <preston@ptone.com>2013-02-23 15:28:49 -0800
commit9d2c0a0ae6ce931699daa87735d5b8b2afaa20f9 (patch)
tree8068ca95a7699a9cfdf99eb590ad165b50cb0ed2 /docs
parentb902a92b71c76b2c154f7e55ded9161e6d146825 (diff)
Removed superfluous cookie check from auth login.
This is ensured through the CSRF protection of the view
Diffstat (limited to 'docs')
-rw-r--r--docs/internals/deprecation.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index ef9fd31d15..f1ae1338df 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -320,6 +320,12 @@ these changes.
deprecated. Use the :class:`warnings.catch_warnings` context manager
available starting with Python 2.6 instead.
+* The undocumented ``check_for_test_cookie`` method in
+ :class:`~django.contrib.auth.forms.AuthenticationForm` will be removed
+ following an accelerated deprecation. Users subclassing this form should
+ remove calls to this method, and instead ensure that their auth related views
+ are CSRF protected, which ensures that cookies are enabled.
+
1.8
---