Browse Source

Security: fix XSS attack on alert (#973)

tags/v1.2.0-rc1
Lunny Xiao GitHub 8 years ago
parent
commit
2cda6a0a71
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      templates/base/alert.tmpl

+ 3
- 3
templates/base/alert.tmpl View File

@@ -1,15 +1,15 @@
{{if .Flash.ErrorMsg}}
<div class="ui negative message">
<p>{{.Flash.ErrorMsg | Safe}}</p>
<p>{{.Flash.ErrorMsg | Str2html}}</p>
</div>
{{end}}
{{if .Flash.SuccessMsg}}
<div class="ui positive message">
<p>{{.Flash.SuccessMsg | Safe}}</p>
<p>{{.Flash.SuccessMsg | Str2html}}</p>
</div>
{{end}}
{{if .Flash.InfoMsg}}
<div class="ui info message">
<p>{{.Flash.InfoMsg | Safe}}</p>
<p>{{.Flash.InfoMsg | Str2html}}</p>
</div>
{{end}}

Loading…
Cancel
Save