Set default value to 1 for captcha_mail (#595)

This commit is contained in:
Xavier Guimard 2017-03-14 12:24:45 +00:00
parent 85ad473cd7
commit ffbd92745c
4 changed files with 4 additions and 3 deletions

View File

@ -17,6 +17,7 @@ sub defaultValues {
},
'authChoiceParam' => 'lmAuth',
'authentication' => 'Demo',
'captcha_mail_enabled' => 1,
'captcha_register_enabled' => 1,
'captcha_size' => 6,
'CAS_authnLevel' => 1,

View File

@ -581,7 +581,7 @@ sub attributes {
'type' => 'bool'
},
'captcha_mail_enabled' => {
'default' => 0,
'default' => 1,
'type' => 'bool'
},
'captcha_register_enabled' => {

View File

@ -709,7 +709,7 @@ sub attributes {
documentation => 'Captcha on login page',
},
captcha_mail_enabled => {
default => 0,
default => 1,
type => 'bool',
documentation => 'Captcha on password reset page',
},

File diff suppressed because one or more lines are too long