https_local_ssl_verify, false

https_local_ssl_verify, false

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: jetpack.16.0.1

apply_filters('https_local_ssl_verify, false') is found 2 times:

  • /jetpack_vendor/automattic/jetpack-sync/src/class-dedicated-sender.php line 191
    			'cookies'   => $_COOKIE,
    			'blocking'  => false,
    			'timeout'   => 0.01,
    			/** This filter is documented in wp-includes/class-wp-http-streams.php */
    			'sslverify' => apply_filters( 'https_local_ssl_verify', false ),
    		);
    
    		$result = wp_remote_get( $url, $args );
    		if ( is_wp_error( $result ) ) {
    			return $result;
    		}
    
  • /jetpack_vendor/automattic/jetpack-sync/src/class-dedicated-sender.php line 330
    			$args = array(
    				'cookies'   => $_COOKIE,
    				'timeout'   => 30,
    				/** This filter is documented in wp-includes/class-wp-http-streams.php */
    				'sslverify' => apply_filters( 'https_local_ssl_verify', false ),
    			);
    
    			$response                     = wp_remote_get( $url, $args );
    			$dedicated_sync_response_code = wp_remote_retrieve_response_code( $response );
    			$dedicated_sync_response_body = trim( wp_remote_retrieve_body( $response ) );