Opened 12 years ago
Closed 12 years ago
#19446 closed Bug (duplicate)
django.contrib.auth.views.login doesn't check for test-cookie properly
Reported by: | Owned by: | nobody | |
---|---|---|---|
Component: | contrib.auth | Version: | 1.4 |
Severity: | Normal | Keywords: | auth login test_cookie |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
The django.contrib.auth.views.login expected to pass the request object to the AuthenticationForm in which the Cookie would be tested with test_cookie. it sends the request object in GET calls to the form but not in the POST calls. adding the request as the first positional argument to the AuthenticationForm in POST calls will fix this bug.
Thank you so much.
Note:
See TracTickets
for help on using tickets.
Related to #15198. Let's fix this on that ticket.