Fix tag rendering which was displayed as escaped HTML instead of rendered HTML

This commit is contained in:
TiMESPLiNTER 2019-07-21 12:43:05 +02:00
parent 502617afde
commit 8825971687
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@
<div id="photo-tags">{{$tags.title}}
{{foreach $tags.tags as $t}}
<span class="category label btn-success sm">
<span class="p-category">{{$t.name}}</span>
<span class="p-category">{{$t.name nofilter}}</span>
{{if $t.removeurl}} <a href="{{$t.removeurl}}">(X)</a> {{/if}}
</span>
{{/foreach}}