This commit is contained in:
astaxie 2015-05-05 21:36:31 +08:00
parent 9252301fa0
commit 18bdec951d
1 changed files with 1 additions and 1 deletions

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)
}