Merge pull request #7415 from TiMESPLiNTER/fix/photo-tag-rendering

Fix tag rendering which was displayed as escaped HTML
This commit is contained in:
Hypolite Petovan
2019-07-21 06:57:42 -04:00
committed by GitHub

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}}