Merge pull request #6351 from MrPetovan/bug/6350-unescape-admin-warning-text

Unescape admin warning text
This commit is contained in:
Michael Vogel 2018-12-30 16:41:05 +01:00 committed by GitHub
commit dc05ada059
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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}}