Commit 933ac0f3 authored by astaxie's avatar astaxie

Merge pull request #1858 from ysqi/issue

fix the issue #1850,the source of the problem is PR #1805
parents ebdf4412 885d45db
......@@ -341,7 +341,7 @@ func responseError(rw http.ResponseWriter, r *http.Request, errCode int, errCont
data := map[string]interface{}{
"Title": http.StatusText(errCode),
"BeegoVersion": VERSION,
"Content": errContent,
"Content": template.HTML(errContent),
}
t.Execute(rw, data)
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment