]> git.mxchange.org Git - friendica.git/commitdiff
Fixing templates - unescaping it again
authorMichael <heluecht@pirati.ca>
Thu, 20 Dec 2018 21:57:53 +0000 (21:57 +0000)
committerMichael <heluecht@pirati.ca>
Thu, 20 Dec 2018 21:57:53 +0000 (21:57 +0000)
view/templates/profile_advanced.tpl
view/theme/frio/templates/profile_advanced.tpl
view/theme/frio/templates/search_item.tpl
view/theme/frio/templates/wall_thread.tpl
view/theme/vier/templates/profile_advanced.tpl

index a31868a0d60761d2545306106c76a1636cdf030c..3bc69dce469470336b02805b016151d5fdd3d6a9 100644 (file)
@@ -86,7 +86,7 @@
 {{if $profile.about}}
 <dl id="aprofile-about" class="aprofile">
  <dt>{{$profile.about.0}}</dt>
- <dd>{{$profile.about.1}}</dd>
+ <dd>{{$profile.about.1 nofilter}}</dd>
 </dl>
 {{/if}}
 
index a36572c25acaeff9573ab80b0743f7c8bd1eb7f4..25311083156e20545f35d759787b1082539b69bf 100644 (file)
@@ -90,7 +90,7 @@
                        <div id="aprofile-about" class="col-lg-12 col-md-12 col-sm-12 col-xs-12 aprofile">
                                <hr class="profile-separator">
                                <div class="col-lg-4 col-md-4 col-sm-4 col-xs-12 profile-label-name text-muted">{{$profile.about.0}}</div>
-                               <div class="col-lg-8 col-md-8 col-sm-8 col-xs-12 profile-entry">{{$profile.about.1}}</div>
+                               <div class="col-lg-8 col-md-8 col-sm-8 col-xs-12 profile-entry">{{$profile.about.1 nofilter}}</div>
                        </div>
                        {{/if}}
 
index 842698e16ea3cdee36e5849ec553821ed570092d..454f4e8873b48f2f6722a9752b52453c58ba05b2 100644 (file)
                                <div class="wall-item-tags">
                        {{if !$item.suppress_tags}}
                                {{foreach $item.hashtags as $tag}}
-                                       <span class="tag label btn-info sm">{{$tag}} <i class="fa fa-bolt" aria-hidden="true"></i></span>
+                                       <span class="tag label btn-info sm">{{$tag nofilter}} <i class="fa fa-bolt" aria-hidden="true"></i></span>
                                {{/foreach}}
 
                                {{foreach $item.mentions as $tag}}
-                                       <span class="mention label btn-warning sm">{{$tag}} <i class="fa fa-user" aria-hidden="true"></i></span>
+                                       <span class="mention label btn-warning sm">{{$tag nofilter}} <i class="fa fa-user" aria-hidden="true"></i></span>
                                {{/foreach}}
                        {{/if}}
 
index 0ecceab0f16a98c7d07ff0a4b2a620c4d81bdce2..8a3816f8c6666d20536c74ebff0e5c0d29b3abb0 100644 (file)
@@ -264,11 +264,11 @@ as the value of $top_child_total (this is done at the end of this file)
                        <div class="wall-item-tags">
                {{if !$item.suppress_tags}}
                        {{foreach $item.hashtags as $tag}}
-                               <span class="tag label btn-info sm">{{$tag}} <i class="fa fa-bolt" aria-hidden="true"></i></span>
+                               <span class="tag label btn-info sm">{{$tag nofilter}} <i class="fa fa-bolt" aria-hidden="true"></i></span>
                        {{/foreach}}
 
                        {{foreach $item.mentions as $tag}}
-                               <span class="mention label btn-warning sm">{{$tag}} <i class="fa fa-user" aria-hidden="true"></i></span>
+                               <span class="mention label btn-warning sm">{{$tag nofilter}} <i class="fa fa-user" aria-hidden="true"></i></span>
                        {{/foreach}}
                {{/if}}
 
index 96cd1639f58f6407c3bd10608a46a6a304a0d0f7..28d42efe8db738892ce68a612de38ddebd3cc04d 100644 (file)
@@ -91,7 +91,7 @@
 {{if $profile.about}}
 <dl id="aprofile-about" class="aprofile">
  <dt>{{$profile.about.0}}</dt>
- <dd>{{$profile.about.1}}</dd>
+ <dd>{{$profile.about.1 nofilter}}</dd>
 </dl>
 {{/if}}