diff options
author | Unknown <joe2010xtmf@163.com> | 2014-04-18 21:17:43 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-04-18 21:17:43 -0400 |
commit | b32e223db56b270d4dd45aed0c9fd5dd54d0f5f8 (patch) | |
tree | d6b040f6cb95ebd6789f0267cc5abfa5ef7f7429 /routers | |
parent | bda8fdc5f4da70e3d2bc032663a2188aa93d8c9c (diff) | |
download | gitea-b32e223db56b270d4dd45aed0c9fd5dd54d0f5f8.tar.gz gitea-b32e223db56b270d4dd45aed0c9fd5dd54d0f5f8.zip |
Mirror fix
Diffstat (limited to 'routers')
-rw-r--r-- | routers/user/user.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/user/user.go b/routers/user/user.go index ce4d0cc3d0..91b51ceec9 100644 --- a/routers/user/user.go +++ b/routers/user/user.go @@ -271,7 +271,7 @@ func SignUpPost(ctx *middleware.Context, form auth.RegisterForm) { ctx.Data["IsSendRegisterMail"] = true ctx.Data["Email"] = u.Email ctx.Data["Hours"] = base.Service.ActiveCodeLives / 60 - ctx.HTML(200, "user/active") + ctx.HTML(200, "user/activate") if err = ctx.Cache.Put("MailResendLimit_"+u.LowerName, u.LowerName, 180); err != nil { log.Error("Set cache(MailResendLimit) fail: %v", err) |