You appear to be a bot. Output may be restricted
Description
Analyze the response from bw_remote_get2()WordPress.org may reply with an empty XML block which is going to be less than 70 characters <?xml version="1.0" encoding="utf-8"?> <plugin> <NULL /></plugin>
Usage
bw_analyze_response_xml2( $response_xml2, $response_xml );
Parameters
- $response_xml2
- ( string ) required – from wordpress.org
- $response_xml
- ( string ) required – from the plugin data
Returns
voidSource
File name: oik-bob-bing-wide/shortcodes/oik-plug.phpLines:
1 to 7 of 7
function bw_analyze_response_xml2( $response_xml2, $response_xml ) { if ( $response_xml2 && strlen( $response_xml2 ) >= 70 ) { bw_trace2( $response_xml2, "response_xml2" ); $response_xml = $response_xml2; } return( $response_xml ); }View on GitHub