Unescape variables in events and descriptions

This commit is contained in:
Hypolite Petovan 2018-12-14 01:24:26 -05:00
commit 698d12af79
9 changed files with 11 additions and 11 deletions

View file

@ -29,7 +29,7 @@
<a href="{{$author_link}}" class="userinfo">{{$author_name}}</a>
</div>
{{if $location.map}}
<div id="event-location-map-{{$id}}" class="event-location-map">{{$location.map}}</div>
<div id="event-location-map-{{$id}}" class="event-location-map">{{$location.map nofilter}}</div>
{{/if}}
</div>
<div class="clearfix"></div>
@ -41,7 +41,7 @@
{{* The content of the event description *}}
{{if $description}}
<div class="description event-description">
{{$description}}
{{$description nofilter}}
</div>
{{/if}}
</div>