Opened 14 years ago
Closed 14 years ago
#14230 closed (fixed)
Documentation for Auth's Logout view suggests wrong redirect takes precedence.
Reported by: | Owned by: | Justin Lilly | |
---|---|---|---|
Component: | contrib.auth | Version: | 1.2 |
Severity: | Keywords: | auth logout | |
Cc: | kez.knight@… | Triage Stage: | Accepted |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Currently, the documentation for django.contrib.auth.views.logout states
redirect_field_name: The name of a GET field containing the URL to redirect to after log out. Overrides next_page if the given GET parameter is passed.
However, as far as I can tell from staring at Trunk, this is only the case is next_page isn't also set. I appreciate it makes sense most of the time for only one to be provided, but as someone on IRC discovered, you can supply both (erroneously or not), at which point the documentation suggests the wrong one takes precedence.
Change History (4)
comment:1 by , 14 years ago
comment:2 by , 14 years ago
Triage Stage: | Unreviewed → Accepted |
---|
comment:3 by , 14 years ago
Component: | Documentation → Authentication |
---|---|
Owner: | changed from | to
Status: | new → assigned |
I agree with andretavares that the documentation makes sense and the implementation does not.
comment:4 by , 14 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
I bumped into the same problem.
I think it isn't a documentation issue, as what is stated there makes perfect sense.