1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-28 20:04:13 +00:00
This commit is contained in:
astaxie 2015-05-05 21:36:31 +08:00
parent b4880c5e1d
commit 47be2fadb5

View File

@ -92,7 +92,7 @@ func showErr(err interface{}, ctx *context.Context, Stack string) {
data["Stack"] = Stack
data["BeegoVersion"] = VERSION
data["GoVersion"] = runtime.Version()
ctx.Output.SetStatus(500)
ctx.ResponseWriter.WriteHeader(500)
t.Execute(ctx.ResponseWriter, data)
}