diff --git a/placid/PlacidPlugin.php b/placid/PlacidPlugin.php index dca9aa2..f8c54bc 100755 --- a/placid/PlacidPlugin.php +++ b/placid/PlacidPlugin.php @@ -10,7 +10,7 @@ function getName() } function getVersion() { - return '1.6.2'; + return '1.6.3'; } function getDeveloper() { diff --git a/placid/services/Placid_RequestsService.php b/placid/services/Placid_RequestsService.php index fcfb953..92addab 100755 --- a/placid/services/Placid_RequestsService.php +++ b/placid/services/Placid_RequestsService.php @@ -441,7 +441,7 @@ private function _getResponse(Client $client, $request) $contentType = 'application/json'; } - if($contentType = 'text/xml') + if($contentType == 'text/xml') { try { $output = $response->xml(); @@ -526,4 +526,5 @@ private function _deleteWidgetsByRecord($id) } return true; } + }