From 9ebe1e049b0d24b02db3ed69ab5a287193b9ddaf Mon Sep 17 00:00:00 2001 From: Dion Hulse Date: Mon, 29 Jul 2013 01:47:01 +0000 Subject: [PATCH] WP_HTTP: Fsockopen: Respect a specified Host header in the Fsockopen WP_HTTP transport. Fixes #24182 git-svn-id: https://develop.svn.wordpress.org/trunk@24845 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/class-http.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/wp-includes/class-http.php b/wp-includes/class-http.php index 541ae56c71..cfd4d47c45 100644 --- a/wp-includes/class-http.php +++ b/wp-includes/class-http.php @@ -693,6 +693,14 @@ class WP_Http_Fsockopen { } } + if ( isset( $r['headers']['Host'] ) || isset( $r['headers']['host'] ) ) { + if ( isset( $r['headers']['Host'] ) ) + $arrURL['host'] = $r['headers']['Host']; + else + $arrURL['host'] = $r['headers']['host']; + unset( $r['headers']['Host'], $r['headers']['host'] ); + } + //fsockopen has issues with 'localhost' with IPv6 with certain versions of PHP, It attempts to connect to ::1, // which fails when the server is not set up for it. For compatibility, always connect to the IPv4 address. if ( 'localhost' == strtolower($fsockopen_host) )