From 23b07d4366c37b341d9a69108db2832b3614e29e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 30 Oct 2017 11:27:04 +0100 Subject: [PATCH] Correctly render html formatted variables MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Čihař --- templates/server/variables/variable_row.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/server/variables/variable_row.twig b/templates/server/variables/variable_row.twig index 7bfcfca90d..8c165afbdd 100644 --- a/templates/server/variables/variable_row.twig +++ b/templates/server/variables/variable_row.twig @@ -23,7 +23,7 @@ {% if is_html_formatted == false %} {{ value|e|replace({',': ',​'})|raw }} {% else %} - {{ value }} + {{ value|raw }} {% endif %}