Skip to content

Commit

Permalink
Fix default value for Captcha setting (#1136)
Browse files Browse the repository at this point in the history
  • Loading branch information
FatihKoz committed Apr 12, 2021
1 parent 68ed235 commit 3d55336
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/captcha.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Don't edit this file directly, add the section to your config.php
*/
return [
'enabled' => env('CAPTCHA_ENABLED', 'false'),
'enabled' => env('CAPTCHA_ENABLED', false),
'sitekey' => env('CAPTCHA_SITEKEY', ''),
'secret' => env('CAPTCHA_SECRET', ''),

Expand Down

0 comments on commit 3d55336

Please sign in to comment.