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
2 changed files with 2 additions and 2 deletions
+1 -1
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}}
+1 -1
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}}