Skip to content

Commit

Permalink
Fix escaping of ContentType names in listing pages
Browse files Browse the repository at this point in the history
  • Loading branch information
bobdenotter committed Dec 24, 2020
1 parent 075f30e commit 86ef054
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/content/listing.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

{% block title %}
{{ macro.icon(contentType.icon_one) }}
{{ contentType.name }}
{{ contentType.name|raw }}
{% if filterValue %}<small>({{ __('label.filtered_by') }}: <em>'{{ filterValue }}'</em>)</small>{% endif %}
{% if taxonomy %}<small>({{ __('label.filtered_by') }}: <em>'{{ taxonomy|split('=')|last }}'</em>)</small>{% endif %}

Expand Down

0 comments on commit 86ef054

Please sign in to comment.