Fix template escaping in photo gallery view
This commit is contained in:
parent
3fc5c1ad84
commit
b1e85ba605
|
@ -22,17 +22,17 @@
|
|||
{{/if}}
|
||||
{{if $tags.2}}<div id="tag-remove"><a href="{{$tags.2}}">{{$tags.3}}</a></div>{{/if}}
|
||||
|
||||
{{if $edit}}{{$edit}}{{/if}}
|
||||
{{if $edit}}{{$edit nofilter}}{{/if}}
|
||||
|
||||
{{if $likebuttons}}
|
||||
<div id="photo-like-div">
|
||||
{{$likebuttons}}
|
||||
{{$like}}
|
||||
{{$dislike}}
|
||||
{{$likebuttons nofilter}}
|
||||
{{$like nofilter}}
|
||||
{{$dislike nofilter}}
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{$comments}}
|
||||
{{$comments nofilter}}
|
||||
|
||||
{{$paginate nofilter}}
|
||||
|
||||
|
|
|
@ -68,13 +68,13 @@
|
|||
{{/if}}
|
||||
|
||||
{{* The part for editing the photo - only available for the edit subpage *}}
|
||||
{{if $edit}}{{$edit}}{{/if}}
|
||||
{{if $edit}}{{$edit nofilter}}{{/if}}
|
||||
|
||||
{{if $likebuttons}}
|
||||
<div id="photo-like-div">
|
||||
{{$likebuttons}}
|
||||
{{$like}}
|
||||
{{$dislike}}
|
||||
{{$likebuttons nofilter}}
|
||||
{{$like nofilter}}
|
||||
{{$dislike nofilter}}
|
||||
</div>
|
||||
{{/if}}
|
||||
<hr>
|
||||
|
@ -82,7 +82,7 @@
|
|||
|
||||
{{* Insert the comments *}}
|
||||
<div id="photo-comment-wrapper-{{$id}}" class="photo-comment-wrapper">
|
||||
{{$comments}}
|
||||
{{$comments nofilter}}
|
||||
</div>
|
||||
|
||||
{{$paginate nofilter}}
|
||||
|
|
|
@ -20,18 +20,18 @@
|
|||
{{/if}}
|
||||
{{if $tags.2}}<div id="tag-remove"><a href="{{$tags.2}}">{{$tags.3}}</a></div>{{/if}}
|
||||
|
||||
{{if $edit}}{{$edit}}{{/if}}
|
||||
{{if $edit}}{{$edit nofilter}}{{/if}}
|
||||
|
||||
{{if $likebuttons}}
|
||||
<div id="photo-like-div">
|
||||
{{$likebuttons}}
|
||||
{{$like}}
|
||||
{{$dislike}}
|
||||
{{$likebuttons nofilter}}
|
||||
{{$like nofilter}}
|
||||
{{$dislike nofilter}}
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
<div class="wall-item-comment-wrapper photo">
|
||||
{{$comments}}
|
||||
{{$comments nofilter}}
|
||||
</div>
|
||||
|
||||
{{$paginate nofilter}}
|
||||
|
|
|
@ -22,18 +22,18 @@
|
|||
{{/if}}
|
||||
{{if $tags.2}}<div id="tag-remove"><a href="{{$tags.2}}">{{$tags.3}}</a></div>{{/if}}
|
||||
|
||||
{{if $edit}}{{$edit}}{{/if}}
|
||||
{{if $edit}}{{$edit nofilter}}{{/if}}
|
||||
|
||||
{{if $likebuttons}}
|
||||
<div id="photo-like-div">
|
||||
{{$likebuttons}}
|
||||
{{$like}}
|
||||
{{$dislike}}
|
||||
{{$likebuttons nofilter}}
|
||||
{{$like nofilter}}
|
||||
{{$dislike nofilter}}
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
<div class="wall-item-comment-wrapper photo">
|
||||
{{$comments}}
|
||||
{{$comments nofilter}}
|
||||
</div>
|
||||
|
||||
{{$paginate nofilter}}
|
||||
|
|
Loading…
Reference in a new issue