minor fix on template

This commit is contained in:
Unknwon 2015-09-07 14:02:09 -04:00
parent 3d9b98fae4
commit cc83043edc
4 changed files with 2 additions and 6 deletions

View file

@ -30,7 +30,7 @@ const (
func checkContextUser(ctx *middleware.Context, uid int64) *models.User {
orgs, err := models.GetOwnedOrgsByUserIDDesc(ctx.User.Id, "updated")
if err != nil {
ctx.Handle(500, "GetOwnedOrganizationsByUserIDDesc", err)
ctx.Handle(500, "GetOwnedOrgsByUserIDDesc", err)
return nil
}
ctx.Data["Orgs"] = orgs