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
commit 9cf4562200
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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}}