diff options
author | Unknown <joe2010xtmf@163.com> | 2014-04-22 05:30:53 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-04-22 05:30:53 -0400 |
commit | 5435b259ccdfc7795183d54fec9ba673f2938297 (patch) | |
tree | 0d8280f1073c8b10e80b5eed18f49a1813bc7c88 /routers | |
parent | 2a9da4b8e54736c3a8f7ecc41f3c75fdcfb70f9b (diff) | |
parent | dbdaf934e1b8fab06361266268bb55d30b352f37 (diff) | |
download | gitea-5435b259ccdfc7795183d54fec9ba673f2938297.tar.gz gitea-5435b259ccdfc7795183d54fec9ba673f2938297.zip |
Merge branch 'master' of github.com:gogits/gogs into dev
Diffstat (limited to 'routers')
-rw-r--r-- | routers/user/user.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/routers/user/user.go b/routers/user/user.go index 91b51ceec9..7decd72d4e 100644 --- a/routers/user/user.go +++ b/routers/user/user.go @@ -169,8 +169,8 @@ func SignUp(ctx *middleware.Context) { ctx.Data["Title"] = "Sign Up" ctx.Data["PageIsSignUp"] = true - if base.Service.DisenableRegisteration { - ctx.Data["DisenableRegisteration"] = true + if base.Service.DisableRegistration { + ctx.Data["DisableRegistration"] = true ctx.HTML(200, "user/signup") return } @@ -208,7 +208,7 @@ func SignUpPost(ctx *middleware.Context, form auth.RegisterForm) { ctx.Data["Title"] = "Sign Up" ctx.Data["PageIsSignUp"] = true - if base.Service.DisenableRegisteration { + if base.Service.DisableRegistration { ctx.Handle(403, "user.SignUpPost", nil) return } |