浏览代码

Fix buildUrl parametro por defecto

Guillermo Espinoza 7 年之前
父节点
当前提交
05b1802033
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      Services/Webservice.php

+ 2 - 2
Services/Webservice.php

@@ -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) {
         }