ymkjp / opensocial-php-client

Automatically exported from code.google.com/p/opensocial-php-client
Apache License 2.0
0 stars 0 forks source link

osapiCurlProvider not properly implemented #59

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Headers are not returned with response.
There is mistake in file src\osapi\io\osapiCurlProvider.php line 84.
-    $response = array('http_code' => $http_code, 'data' => $response_body,
'headers' => $headers);
should be
+    $response = array('http_code' => $http_code, 'data' => $response_body,
'headers' => $response_header_array);

Original issue reported on code.google.com by amar...@gmail.com on 23 Oct 2009 at 4:24