Skip to content

Commit da27a89

Browse files
committed
Merge branch 'fix' into fix_save_trp_hash.ag
2 parents 13ca0d9 + ab5bd11 commit da27a89

25 files changed

Lines changed: 99 additions & 34 deletions

cleantalk.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Plugin Name: Anti-Spam by CleanTalk
55
Plugin URI: https://cleantalk.org
66
Description: Max power, all-in-one, no Captcha, premium anti-spam plugin. No comment spam, no registration spam, no contact spam, protects any WordPress forms.
7-
Version: 6.70.1
7+
Version: 6.70.99-fix
88
Author: CleanTalk - Anti-Spam Protection <welcome@cleantalk.org>
99
Author URI: https://cleantalk.org
1010
Text Domain: cleantalk-spam-protect

js/apbct-public-bundle.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/apbct-public-bundle_ext-protection.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/apbct-public-bundle_ext-protection_gathering.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/apbct-public-bundle_full-protection.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/apbct-public-bundle_full-protection_gathering.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/apbct-public-bundle_gathering.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/apbct-public-bundle_int-protection.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/apbct-public-bundle_int-protection_gathering.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/prebuild/apbct-public-bundle.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3210,8 +3210,13 @@ class ApbctHandler {
32103210
*/
32113211
catchWCRestRequestAsMiddleware() {
32123212
const ctPinDataToRequest = (options, next) => {
3213-
if (typeof options !== 'object' || options === null ||
3214-
!options.hasOwnProperty('data') || !options.hasOwnProperty('path')
3213+
if (
3214+
typeof options !== 'object' ||
3215+
options === null ||
3216+
!options.hasOwnProperty('data') ||
3217+
typeof options.data === 'undefined' ||
3218+
!options.hasOwnProperty('path') ||
3219+
typeof options.path === 'undefined'
32153220
) {
32163221
return next(options);
32173222
}

0 commit comments

Comments
 (0)