Browse Source

Fix #222

tags/v1.2.0-rc1
Unknown 11 years ago
parent
commit
2657f88d9a
4 changed files with 7 additions and 8 deletions
  1. +1
    -1
      gogs.go
  2. +0
    -1
      modules/social/social.go
  3. +5
    -5
      routers/user/user.go
  4. +1
    -1
      templates/VERSION

+ 1
- 1
gogs.go View File

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

const APP_VER = "0.4.0.0530 Alpha"
const APP_VER = "0.4.0.0531 Alpha"

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


+ 0
- 1
modules/social/social.go View File

@@ -67,7 +67,6 @@ func NewOauthService() {
TokenURL: setting.OauthService.OauthInfos[name].TokenUrl,
}
}

enabledOauths := make([]string, 0, 10)

// GitHub.


+ 5
- 5
routers/user/user.go View File

@@ -26,6 +26,11 @@ func SignIn(ctx *middleware.Context) {
return
}

if setting.OauthService != nil {
ctx.Data["OauthEnabled"] = true
ctx.Data["OauthService"] = setting.OauthService
}

// Check auto-login.
userName := ctx.GetCookie(setting.CookieUserName)
if len(userName) == 0 {
@@ -33,11 +38,6 @@ func SignIn(ctx *middleware.Context) {
return
}

if setting.OauthService != nil {
ctx.Data["OauthEnabled"] = true
ctx.Data["OauthService"] = setting.OauthService
}

isSucceed := false
defer func() {
if !isSucceed {


+ 1
- 1
templates/VERSION View File

@@ -1 +1 @@
0.4.0.0530 Alpha
0.4.0.0531 Alpha

Loading…
Cancel
Save