Browse Source

Bug fix

pull/31/head
Unknown 11 years ago
parent
commit
76dae5bf68
  1. 2
      routers/user/setting.go

2
routers/user/setting.go

@ -24,6 +24,8 @@ func Setting(form auth.UpdateProfileForm, r render.Render, data base.TmplData, r
user := auth.SignedInUser(session) user := auth.SignedInUser(session)
if req.Method == "GET" { if req.Method == "GET" {
data["Owner"] = user data["Owner"] = user
r.HTML(200, "user/setting", data)
return
} }
if hasErr, ok := data["HasError"]; ok && hasErr.(bool) { if hasErr, ok := data["HasError"]; ok && hasErr.(bool) {

Loading…
Cancel
Save