Author: chabotc Date: Tue Jul 28 08:57:20 2009 New Revision: 798450 URL: http://svn.apache.org/viewvc?rev=798450&view=rev Log: SHINDIG-1131 by Eiji Kitamura - Fix up RSS feed parsing
Modified: incubator/shindig/trunk/php/src/gadgets/MakeRequestHandler.php Modified: incubator/shindig/trunk/php/src/gadgets/MakeRequestHandler.php URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/gadgets/MakeRequestHandler.php?rev=798450&r1=798449&r2=798450&view=diff ============================================================================== --- incubator/shindig/trunk/php/src/gadgets/MakeRequestHandler.php (original) +++ incubator/shindig/trunk/php/src/gadgets/MakeRequestHandler.php Tue Jul 28 08:57:20 2009 @@ -62,7 +62,7 @@ header("Content-Type: application/json; charset=utf-8", true); $output = ''; if (isset($_REQUEST['contentType']) && $_REQUEST['contentType'] == 'FEED' && $status == 200) { - $this->parseFeed($result, $url); + $body = $this->parseFeed($result, $url); } else { $body = $result->getResponseContent(); }