From 64bfe1d8770649ad19f4a25181fce6ccd9acee58 Mon Sep 17 00:00:00 2001 From: Dion Hulse Date: Mon, 4 Mar 2013 03:36:08 +0000 Subject: [PATCH] WP_HTTP: Specifically mark a static function as being static git-svn-id: http://core.svn.wordpress.org/trunk@23602 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-http.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/class-http.php b/wp-includes/class-http.php index 2cf4a73b3f..08f9a80c62 100644 --- a/wp-includes/class-http.php +++ b/wp-includes/class-http.php @@ -323,7 +323,7 @@ class WP_Http { * @param string $strResponse The full response string * @return array Array with 'headers' and 'body' keys. */ - function processResponse($strResponse) { + public static function processResponse($strResponse) { $res = explode("\r\n\r\n", $strResponse, 2); return array('headers' => $res[0], 'body' => isset($res[1]) ? $res[1] : '');