From 867e935c51d337e656f9aefc7c475747c64596b2 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Sun, 12 Dec 2010 22:59:03 +0000 Subject: [PATCH] Fixed #14446 -- Prevented the password reset confirmation view to be cached. Thanks, Paul and Gabriel. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14890 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/auth/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/django/contrib/auth/views.py b/django/contrib/auth/views.py index 7e4b1f33dc..8d0453f8f9 100644 --- a/django/contrib/auth/views.py +++ b/django/contrib/auth/views.py @@ -163,6 +163,7 @@ def password_reset_done(request, context_instance=RequestContext(request, current_app=current_app)) # Doesn't need csrf_protect since no-one can guess the URL +@never_cache def password_reset_confirm(request, uidb36=None, token=None, template_name='registration/password_reset_confirm.html', token_generator=default_token_generator,