Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
in /home/monara/public_html/test.athavaneng.com/themes.php on line 99
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 226
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 227
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 228
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 229
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 230
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 231
ReCaptcha.php 0000644 00000003335 15073231166 0007117 0 ustar 00 'POST',
'body' => [
'secret' => $secret,
'response' => $token
],
]);
$isValid = false;
if (! is_wp_error($response)) {
$result = json_decode(wp_remote_retrieve_body($response));
if($version == 'v3_invisible' && $result->success) {
$score = $result->score;
$value = 0.5;
$value = apply_filters_deprecated(
'fluentforms_recaptcha_v3_ref_score',
[
$value
],
FLUENTFORM_FRAMEWORK_UPGRADE,
'fluentform/recaptcha_v3_ref_score',
'Use fluentform/recaptcha_v3_ref_score instead of fluentforms_recaptcha_v3_ref_score.'
);
$checkScore = apply_filters('fluentform/recaptcha_v3_ref_score', $value);
$isValid = $score >= $checkScore;
} else {
$isValid = $result->success;
}
}
return $isValid;
}
}