Browse Source

Fix #465

tags/v1.2.0-rc1
Unknwon 10 years ago
parent
commit
632b1b694d
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      gogs.go
  2. +1
    -1
      routers/user/auth.go
  3. +1
    -1
      templates/.VERSION

+ 1
- 1
gogs.go View File

@@ -17,7 +17,7 @@ import (
"github.com/gogits/gogs/modules/setting" "github.com/gogits/gogs/modules/setting"
) )


const APP_VER = "0.5.0.0913 Beta"
const APP_VER = "0.5.1.0915 Beta"


func init() { func init() {
runtime.GOMAXPROCS(runtime.NumCPU()) runtime.GOMAXPROCS(runtime.NumCPU())


+ 1
- 1
routers/user/auth.go View File

@@ -280,7 +280,7 @@ func SignUpPost(ctx *middleware.Context, cpt *captcha.Captcha, form auth.Registe
ctx.Data["IsSendRegisterMail"] = true ctx.Data["IsSendRegisterMail"] = true
ctx.Data["Email"] = u.Email ctx.Data["Email"] = u.Email
ctx.Data["Hours"] = setting.Service.ActiveCodeLives / 60 ctx.Data["Hours"] = setting.Service.ActiveCodeLives / 60
ctx.HTML(200, "user/activate")
ctx.HTML(200, ACTIVATE)


if err := ctx.Cache.Put("MailResendLimit_"+u.LowerName, u.LowerName, 180); err != nil { if err := ctx.Cache.Put("MailResendLimit_"+u.LowerName, u.LowerName, 180); err != nil {
log.Error(4, "Set cache(MailResendLimit) fail: %v", err) log.Error(4, "Set cache(MailResendLimit) fail: %v", err)


+ 1
- 1
templates/.VERSION View File

@@ -1 +1 @@
0.5.0.0913 Beta
0.5.1.0915 Beta

Loading…
Cancel
Save