1
0
mirror of https://github.com/astaxie/beego.git synced 2024-07-01 07:04:12 +00:00

Fixed the status issue at error handler.

This commit is contained in:
John 2015-01-10 17:35:35 +08:00
parent d46833c6d8
commit 30871e2617

View File

@ -328,7 +328,7 @@ func Exception(errcode string, w http.ResponseWriter, r *http.Request, msg strin
if err != nil { if err != nil {
isint = 500 isint = 500
} }
if isint == 400 { if isint == 404 {
msg = "404 page not found" msg = "404 page not found"
} }
w.Header().Set("Content-Type", "text/plain; charset=utf-8") w.Header().Set("Content-Type", "text/plain; charset=utf-8")