Opened 19 years ago

Closed 19 years ago

Last modified 18 years ago

#684 closed defect (fixed)

[patch] Give views/decorators/auth.py a fighting chance of accomplishing something

Reported by: rjwittams Owned by: Adrian Holovaty
Component: contrib.admin Version:
Severity: normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by rjwittams)

auth.py is broken. user_passes_test is not a decorator, login_required throws away its view function and calls user_passes_test with only one argument.

This patch restores a vague semblance of correctness to the code..

Attachments (1)

django-auth-decorators.patch (1.5 KB ) - added by rjwittams 19 years ago.

Download all attachments as: .zip

Change History (4)

comment:1 by rjwittams, 19 years ago

Summary: [patch] Give auth-decorators.py a fighting chance of accomplishing something[patch] Give views/decorators/auth.py a fighting chance of accomplishing something

comment:2 by rjwittams, 19 years ago

Description: modified (diff)

by rjwittams, 19 years ago

comment:3 by Adrian Holovaty, 19 years ago

Resolution: fixed
Status: newclosed

(In [1004]) Fixed #684 -- Fixed login_required and user_passes_test decorators. Thanks, rjwittams

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