From 43372fc7aa50b52487f29fffdea3c597a0e8117f Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Thu, 12 Jun 2014 08:37:21 +0200 Subject: [PATCH] Prevented markup escape in 'Welcome to Django' page Fixes a regression introduced in 5f24cf9705. Refs #22635. Thanks A.J. May for spotting the regression. --- django/views/debug.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/django/views/debug.py b/django/views/debug.py index 87f71d1eb0..eb610b7462 100644 --- a/django/views/debug.py +++ b/django/views/debug.py @@ -1164,13 +1164,13 @@ DEFAULT_URLCONF_TEMPLATE = """

- {{ instructions }} + {{ instructions|safe }}

- {{ explanation }} + {{ explanation|safe }}