Opened 14 years ago

Closed 14 years ago

#14230 closed (fixed)

Documentation for Auth's Logout view suggests wrong redirect takes precedence.

Reported by: Keryn Knight <keryn@…> 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 andretavares, 14 years ago

I bumped into the same problem.

I think it isn't a documentation issue, as what is stated there makes perfect sense.

comment:2 by Justin Lilly, 14 years ago

Triage Stage: UnreviewedAccepted

comment:3 by Justin Lilly, 14 years ago

Component: DocumentationAuthentication
Owner: changed from nobody to Justin Lilly
Status: newassigned

I agree with andretavares that the documentation makes sense and the implementation does not.

comment:4 by Brandon M Height, 14 years ago

Resolution: fixed
Status: assignedclosed

This issue was resolved with Ticket 11223 -- Revision: [15706]
Marking As Fixed

Note: See TracTickets for help on using tickets.
Back to Top