From: Unknown Date: Tue, 11 Mar 2014 15:54:43 +0000 (-0400) Subject: Bug fix X-Git-Tag: v0.9.99~2472 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=af5435d58640144cdf29b955ecf96b8792bf6484;p=gitea.git Bug fix --- diff --git a/modules/auth/user.go b/modules/auth/user.go index 215cffedb0..4059edfdd3 100644 --- a/modules/auth/user.go +++ b/modules/auth/user.go @@ -20,6 +20,9 @@ func SignedInId(session sessions.Session) int64 { return 0 } if s, ok := userId.(int64); ok { + if _, err := models.GetUserById(s); err != nil { + return 0 + } return s } return 0 diff --git a/templates/user/signup.tmpl b/templates/user/signup.tmpl index cfbf27fd93..ba41b0c9bb 100644 --- a/templates/user/signup.tmpl +++ b/templates/user/signup.tmpl @@ -7,7 +7,7 @@
- +
@@ -21,7 +21,7 @@
- +