diff options
author | 无闻 <u@gogs.io> | 2015-03-12 15:31:01 -0400 |
---|---|---|
committer | 无闻 <u@gogs.io> | 2015-03-12 15:31:01 -0400 |
commit | 7ba9d1171c1c0cfae14d28da3898cc0db31f830a (patch) | |
tree | 92a23bdeb85bdbf013900ca27bf8445f36b75167 /modules/setting/setting.go | |
parent | 6b70a0c0d926fd128063ab387820cee31890e556 (diff) | |
parent | 98674b2a21e95f9843274d6ca79e06b7070389fe (diff) |
Merge pull request #1038 from ndarilek/fix-typo
Fix typo
Diffstat (limited to 'modules/setting/setting.go')
-rw-r--r-- | modules/setting/setting.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/setting/setting.go b/modules/setting/setting.go index fd07c17f..9c1b0ad3 100644 --- a/modules/setting/setting.go +++ b/modules/setting/setting.go @@ -341,7 +341,7 @@ func newService() { Service.RequireSignInView = Cfg.Section("service").Key("REQUIRE_SIGNIN_VIEW").MustBool() Service.EnableCacheAvatar = Cfg.Section("service").Key("ENABLE_CACHE_AVATAR").MustBool() Service.EnableReverseProxyAuth = Cfg.Section("service").Key("ENABLE_REVERSE_PROXY_AUTHENTICATION").MustBool() - Service.EnableReverseProxyAutoRegister = Cfg.Section("service").Key("ENABLE_REVERSE_PROXY_AUTO_REGISTERATION").MustBool() + Service.EnableReverseProxyAutoRegister = Cfg.Section("service").Key("ENABLE_REVERSE_PROXY_AUTO_REGISTRATION").MustBool() } var logLevels = map[string]string{ |