소스 검색

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