Merge pull request #6351 from MrPetovan/bug/6350-unescape-admin-warning-text
Unescape admin warning text
This commit is contained in:
commit
dc05ada059
|
@ -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}}
|
||||
|
|
|
@ -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}}
|
||||
|
|
Loading…
Reference in a new issue