1
0
mirror of https://gitcode.com/gitea/gitea.git synced 2025-07-13 20:21:26 +08:00

Fix incorrect key name so registerManualConfirm setting works as expected. ()

This commit is contained in:
Dofri Jónsson
2021-01-26 02:20:59 +01:00
committed by GitHub
parent efe4235412
commit 012bf388ab

@ -67,7 +67,7 @@ func newService() {
Service.DisableRegistration = sec.Key("DISABLE_REGISTRATION").MustBool()
Service.AllowOnlyExternalRegistration = sec.Key("ALLOW_ONLY_EXTERNAL_REGISTRATION").MustBool()
if !sec.Key("REGISTER_EMAIL_CONFIRM").MustBool() {
Service.RegisterManualConfirm = sec.Key("REGISTER_EMAIL_CONFIRM").MustBool(false)
Service.RegisterManualConfirm = sec.Key("REGISTER_MANUAL_CONFIRM").MustBool(false)
} else {
Service.RegisterManualConfirm = false
}