From 439f03f5970b67e78aaf7928ee876a671e5bdcf4 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Thu, 6 Nov 2008 20:24:29 +0000 Subject: [PATCH] Fix notice. fixes #8082 git-svn-id: https://develop.svn.wordpress.org/trunk@9554 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/rss.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-includes/rss.php b/wp-includes/rss.php index 9ab7d53a02..e3ffb19266 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'];