Removed superfluous cookie check from auth login.

This is ensured through the CSRF protection of the view
This commit is contained in:
Preston Holmes 2013-02-23 14:19:01 -08:00
parent b902a92b71
commit 9d2c0a0ae6
4 changed files with 10 additions and 11 deletions

View file

@ -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
---