olivierbon / Placid

Placid is a Craft plugin which makes it easy to consume REST services in your twig templates
77 stars 5 forks source link

Added a fix in placid/services/Placid_RequestsService.php in the getD… #26

Open ghost opened 8 years ago

ghost commented 8 years ago

Hello,

I added a fix in placid/services/Placid_RequestsService.php in the getDataFromResponse method that was checking for the content type on the response body, not the response. This in turn caused checks for the XML content type to fail. In addition, I added checks for both 'text/xml' and 'application/xml'.

Prior to this fix, responses containing XML were NULL when accessing the 'data' property. Not sure if this is the best approach, but it seems to address the issue.