From 73e7179ccfef088abcf137aa6ba8738652fcf8ff Mon Sep 17 00:00:00 2001 From: CommanderRoot Date: Thu, 8 Jun 2017 03:30:57 +0200 Subject: [PATCH] Fix double escaping Signed-off-by: Tobias Speicher --- templates/table/structure/table_structure_row.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/table/structure/table_structure_row.twig b/templates/table/structure/table_structure_row.twig index c85df1811c..14a1ae0b2e 100644 --- a/templates/table/structure/table_structure_row.twig +++ b/templates/table/structure/table_structure_row.twig @@ -9,7 +9,7 @@ - {{ extracted_columnspec['displayed_type'] }} + {{ extracted_columnspec['displayed_type']|raw }} {% if relation_commwork and relation_mimework and browse_mime and mime_map[row['Field']]['mimetype'] is defined %}
MIME: {{ mime_map[row['Field']]['mimetype']|replace({'_': '/'})|lower }}