From 83e747bfda43c2c8fa0aceb2c989d42fe5ca1582 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Sun, 13 Sep 2015 11:07:21 -0400 Subject: #697 and #1606 and new admin edit user UI --- modules/setting/setting.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/setting') diff --git a/modules/setting/setting.go b/modules/setting/setting.go index 06d02005..a6211e90 100644 --- a/modules/setting/setting.go +++ b/modules/setting/setting.go @@ -421,7 +421,7 @@ var Service struct { EnableReverseProxyAuth bool EnableReverseProxyAutoRegister bool DisableMinimumKeySizeCheck bool - DisableCaptcha bool + EnableCaptcha bool } func newService() { @@ -435,7 +435,7 @@ func newService() { Service.EnableReverseProxyAuth = sec.Key("ENABLE_REVERSE_PROXY_AUTHENTICATION").MustBool() Service.EnableReverseProxyAutoRegister = sec.Key("ENABLE_REVERSE_PROXY_AUTO_REGISTRATION").MustBool() Service.DisableMinimumKeySizeCheck = sec.Key("DISABLE_MINIMUM_KEY_SIZE_CHECK").MustBool() - Service.DisableCaptcha = sec.Key("DISABLE_CAPTCHA").MustBool() + Service.EnableCaptcha = sec.Key("ENABLE_CAPTCHA").MustBool() } var logLevels = map[string]string{ -- cgit v1.2.3