Skip to content

Commit 27cdb21

Browse files
committed
fix: Typo
1 parent 09eb7ef commit 27cdb21

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

plugin-recaptcha/verificationWithCurl.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
// Replace with your secrey key
3-
$secretKey = '___REPLACE_WITH_YOUR_SECRECT_KEY___';
3+
$secretKey = '___REPLACE_WITH_YOUR_SECRET_KEY___';
44

55
// See https://developers.google.com/recaptcha/docs/verify#api-request
66
$fields = array(

plugin-recaptcha3/verificationWithCurl.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
// Replace with your secrey key
3-
$secretKey = '___REPLACE_WITH_YOUR_SECRECT_KEY___';
3+
$secretKey = '___REPLACE_WITH_YOUR_SECRET_KEY___';
44

55
// See https://developers.google.com/recaptcha/docs/verify#api-request
66
$fields = array(

plugin-recaptcha3/verificationWithFileContents.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
// Replace with your secrey key
3-
$secretKey = '___REPLACE_WITH_YOUR_SECRECT_KEY___';
3+
$secretKey = '___REPLACE_WITH_YOUR_SECRET_KEY___';
44

55
$url = 'https://www.google.com/recaptcha/api/siteverify?secret='
66
. urlencode($secretKey)

0 commit comments

Comments
 (0)