Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Protect: Revert XML RPC request should get hard blocker quicke (#9312)
Since a lot of third party services relied on this be able to connect and were blocked as a result we decided to revert the PR. If someone want to hadern their XMLRPC connection they can use the following code instead. ``` add_filter( 'jpp_use_captcha_when_blocked', 'jetpack_no_captia_on_xmlrpc_requests' ); function jetpack_no_captia_on_xmlrpc_requests($allow_math_fallback) { if( Jetpack_Constants::is_true( 'XMLRPC_REQUEST' ) ) { return false; } return $allow_math_fallback; } ```
- Loading branch information