From d4c55c25d6c71b77ad4fa817f4aa2978cfcd6b8d Mon Sep 17 00:00:00 2001 From: ryan Date: Thu, 6 Nov 2008 20:24:29 +0000 Subject: [PATCH] Fix notice. fixes #8082 git-svn-id: http://svn.automattic.com/wordpress/trunk@9554 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/rss.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-includes/rss.php b/wp-includes/rss.php index 9ab7d53a0..e3ffb1926 100644 --- a/wp-includes/rss.php +++ b/wp-includes/rss.php @@ -542,6 +542,7 @@ function _fetch_remote_file ($url, $headers = "" ) { $resp->status = 500; return $resp; } + $response = new stdClass; $response->status = $resp['response']['code']; $response->headers = $resp['headers']; $response->results = $resp['body'];