Changeset 52964 for trunk/src/wp-includes/class-wp-http.php
- Timestamp:
- 03/20/2022 04:01:01 PM (4 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-http.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-http.php
r52597 r52964 656 656 * @since 2.7.0 657 657 * 658 * @param string $ str_response The full response string.658 * @param string $response The full response string. 659 659 * @return array { 660 660 * Array with response headers and body. … … 664 664 * } 665 665 */ 666 public static function processResponse( $ str_response ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid667 $response = explode( "\r\n\r\n", $ str_response, 2 );666 public static function processResponse( $response ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid 667 $response = explode( "\r\n\r\n", $response, 2 ); 668 668 669 669 return array(
Note: See TracChangeset
for help on using the changeset viewer.