1
0
mirror of https://github.com/django/django.git synced 2025-10-27 15:46:10 +00:00

[1.8.x] Fixed #24273 -- Allowed copying RequestContext more than once.

Thanks Collin Anderson for the report.

Backport of 31d3a355 from master
This commit is contained in:
Aymeric Augustin
2015-02-05 13:20:33 +01:00
parent f5749252ea
commit 5fbec369aa
2 changed files with 8 additions and 2 deletions

View File

@@ -232,5 +232,6 @@ class RequestContext(Context):
new_context = super(RequestContext, self).new(values)
# This is for backwards-compatibility: RequestContexts created via
# Context.new don't include values from context processors.
del new_context._processors_index
if hasattr(new_context, '_processors_index'):
del new_context._processors_index
return new_context