﻿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
17088	"_generate_cache_key() doesn't use the ""method"" parameter"	Cosi	nobody	"_generate_cache_key() from django.utils.cache module makes no use of the ''method'' parameter passed to the function. Instead, it uses the ''method'' attribute of the ''request'' parameter.
Changing:
{{{cache_key = 'views.decorators.cache.cache_page.%s.%s.%s.%s' % (
        key_prefix, request.method, path.hexdigest(), ctx.hexdigest())}}}
to
{{{cache_key = 'views.decorators.cache.cache_page.%s.%s.%s.%s' % (
        key_prefix, method, path.hexdigest(), ctx.hexdigest())}}}
would resolve the problem.
"	Bug	closed	Core (Cache system)	1.3	Normal	fixed	cache		Unreviewed	1	0	0	0	0	0
