1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

Fixed #29791 -- Made Engine.render_to_string() honor autoescape.

This commit is contained in:
Nathan Gaberel
2019-03-23 20:27:45 +00:00
committed by Tim Graham
parent d4df5e1b0b
commit 624573726a
3 changed files with 9 additions and 1 deletions

View File

@@ -160,7 +160,7 @@ class Engine:
if isinstance(context, Context):
return t.render(context)
else:
return t.render(Context(context))
return t.render(Context(context, autoescape=self.autoescape))
def select_template(self, template_name_list):
"""