﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
14446	auth.views.password_reset_confirm should never be cached	Paul McMillan	Paul McMillan	"I'm splitting this issue off from #14105, as it is separate from the meat of that ticket.

`Django.contrib.auth.views.password_reset_confirm` needs the `never_cache` decorator.

To reproduce:
{{{
1. Start a new project. Add  django.contrib.admin  and setup a sqlite database. Run manage.py test auth. Result: OK.

2. Relevant bits of settings.py:

    MIDDLEWARE_CLASSES = (
        'django.middleware.cache.UpdateCacheMiddleware',
        'django.middleware.common.CommonMiddleware',
        'django.middleware.cache.FetchFromCacheMiddleware,
    )
    CACHE_BACKEND = 'locmem://'

Run manage.py test auth. Result: (failures=1, errors=11) 
}}}

This issue is that single failure."		new	contrib.auth	1.2					Ready for checkin	1	0	0	0	0	0
