Fix default value for Captcha setting (#1136)

This commit is contained in:
B.Fatih KOZ 2021-04-12 23:55:38 +03:00 committed by GitHub
parent 68ed2355ad
commit 3d55336823
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@
* Don't edit this file directly, add the section to your config.php * Don't edit this file directly, add the section to your config.php
*/ */
return [ return [
'enabled' => env('CAPTCHA_ENABLED', 'false'), 'enabled' => env('CAPTCHA_ENABLED', false),
'sitekey' => env('CAPTCHA_SITEKEY', ''), 'sitekey' => env('CAPTCHA_SITEKEY', ''),
'secret' => env('CAPTCHA_SECRET', ''), 'secret' => env('CAPTCHA_SECRET', ''),