Unescape admin warning text

This commit is contained in:
Hypolite Petovan 2018-12-30 10:12:13 -05:00
parent 034d0f650b
commit e0a763b07f
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
{{if $showwarning}}
<div id="admin-warning-message-wrapper">
{{foreach $warningtext as $wt}}
<p class="warning-message">{{$wt}}</p>
<p class="warning-message">{{$wt nofilter}}</p>
{{/foreach}}
</div>
{{/if}}

View File

@ -5,7 +5,7 @@
{{if $showwarning}}
<div id="admin-warning-message-wrapper" class="alert alert-warning">
{{foreach $warningtext as $wt}}
<p>{{$wt}}</p>
<p>{{$wt nofilter}}</p>
{{/foreach}}
</div>
{{/if}}