|
@@ -155,7 +155,7 @@ class Webservice
|
|
|
{
|
|
|
$data = array();
|
|
|
try {
|
|
|
- $url = $this->buildUrl($url, $filters, $order_by, $limit, $offset);
|
|
|
+ $url = $this->buildUrl($url, $filters, false, $order_by, $limit, $offset);
|
|
|
$data = json_decode($this->makeGetRequest($url), true);
|
|
|
} catch (\Exception $ex) {
|
|
|
// TODO : Loguear esta exception o lanzarla.
|
|
@@ -179,7 +179,7 @@ class Webservice
|
|
|
{
|
|
|
$data = array();
|
|
|
try {
|
|
|
- $url = $this->buildUrl($url, $filters, $order_by, $limit, $offset);
|
|
|
+ $url = $this->buildUrl($url, $filters, false, $order_by, $limit, $offset);
|
|
|
$data = json_decode($this->makeRequest($url), true);
|
|
|
} catch (\Exception $ex) {
|
|
|
}
|