Working on register mail confirmation

This commit is contained in:
Unknown 2014-03-19 09:29:58 -04:00
parent bf1d1f9579
commit 0da4975f4f
2 changed files with 5 additions and 4 deletions

View file

@ -17,9 +17,9 @@ func SignInRequire(redirect bool) martini.Handler {
}
return
} else if !ctx.User.IsActive {
ctx.Data["Title"] = "Activate Your Account"
ctx.Render.HTML(200, "user/active", ctx.Data)
return
// ctx.Data["Title"] = "Activate Your Account"
// ctx.Render.HTML(200, "user/active", ctx.Data)
// return
}
}
}