You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shindig.apache.org by ch...@apache.org on 2009/07/28 10:57:21 UTC

svn commit: r798450 - /incubator/shindig/trunk/php/src/gadgets/MakeRequestHandler.php

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();
     }