Ticket #48351: 48351.diff
File 48351.diff, 678 bytes (added by , 5 years ago) |
---|
-
src/wp-includes/class-http.php
645 645 * @since 2.7.0 646 646 * 647 647 * @param string $strResponse The full response string 648 * @return array Array with 'headers' and 'body' keys. 648 * @return array { 649 * @type string $headers Http Response headers 650 * @type string $body Http Response body 651 } 649 652 */ 650 653 public static function processResponse( $strResponse ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid 651 654 $res = explode( "\r\n\r\n", $strResponse, 2 );