ソースを参照

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