From 2511d7e2c3f518f1cddeae8d7e2b643cf46730e8 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Sat, 16 May 2009 04:46:31 +0000 Subject: [PATCH] Fix bad call to str_replace. see #9395 git-svn-id: https://develop.svn.wordpress.org/trunk@11355 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/http.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/http.php b/wp-includes/http.php index e3575f2c09..be618a7c66 100644 --- a/wp-includes/http.php +++ b/wp-includes/http.php @@ -399,7 +399,7 @@ class WP_Http { // split headers, one per array element if ( is_string($headers) ) { // tolerate line terminator: CRLF = LF (RFC 2616 19.3) - $headers = str_replace("\r\n", "\n"); + $headers = str_replace("\r\n", "\n", $headers); // unfold folded header fields. LWS = [CRLF] 1*( SP | HT ) , (RFC 2616 2.2) $headers = preg_replace('/\n[ \t]/', ' ', $headers); // create the headers array