Commit 867e935c authored by Jannis Leidel's avatar Jannis Leidel
Browse files

Fixed #14446 -- Prevented the password reset confirmation view to be cached....

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
parent d8165ce1
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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,