]> git.mxchange.org Git - friendica.git/blobdiff - view/templates/wall/content_filter.tpl
Remove uses of HTML escaping in Smarty templates
[friendica.git] / view / templates / wall / content_filter.tpl
index 2dafdca0953490169f01b228f0fc1ce2520000e1..37e5a8a4c8ddea6e7462f8eda89cc6146bb241d6 100644 (file)
@@ -1,7 +1,7 @@
 {{if count($reasons) > 1}}
 <ul class="content-filter-reasons">
        {{foreach $reasons as $reason}}
-       <li>{{$reason|escape:html}}</li>
+       <li>{{$reason}}</li>
        {{/foreach}}
 </ul>
 <p>
@@ -11,7 +11,7 @@
 </p>
 {{else}}
 <p>
-       {{$reasons.0|escape:html}}
+       {{$reasons.0}}
        <button type="button" id="content-filter-wrap-{{$rnd}}" class="btn btn-default btn-xs content-filter-button" onclick="openClose('content-filter-{{$rnd}}');">
                <i class="glyphicon glyphicon-eye-open"></i> {{$openclose}}
        </button>
@@ -19,4 +19,4 @@
 {{/if}}
 <div id="content-filter-{{$rnd}}" class="content-filter-content" style="display: none;">
        {{$html}}
-</div>
\ No newline at end of file
+</div>