Changes between Initial Version and Version 2 of Ticket #684
- Timestamp:
- Oct 23, 2005, 10:29:54 AM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #684
- Property Summary [patch] Give auth-decorators.py a fighting chance of accomplishing something → [patch] Give views/decorators/auth.py a fighting chance of accomplishing something
-
Ticket #684 – Description
initial v2 1 Auth decorators.py is broken. user_passes_test is not a decorator, login_required throws away its views view function and calls user_passes_test with only one argument.1 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. 2 2 3 3 This patch restores a vague semblance of correctness to the code..