diff -r 3d4e9c994f10 -r a86126ab1dd4 wp/wp-includes/Requests/Transport/fsockopen.php --- a/wp/wp-includes/Requests/Transport/fsockopen.php Tue Oct 22 16:11:46 2019 +0200 +++ b/wp/wp-includes/Requests/Transport/fsockopen.php Tue Dec 15 13:49:49 2020 +0100 @@ -150,7 +150,7 @@ $options['hooks']->dispatch('fsockopen.remote_host_path', array(&$path, $url)); $request_body = ''; - $out = sprintf("%s %s HTTP/%.1f\r\n", $options['type'], $path, $options['protocol_version']); + $out = sprintf("%s %s HTTP/%.1F\r\n", $options['type'], $path, $options['protocol_version']); if ($options['type'] !== Requests::TRACE) { if (is_array($data)) { @@ -192,7 +192,7 @@ $headers = Requests::flatten($headers); if (!empty($headers)) { - $out .= implode($headers, "\r\n") . "\r\n"; + $out .= implode("\r\n", $headers) . "\r\n"; } $options['hooks']->dispatch('fsockopen.after_headers', array(&$out));