@@ -21,7 +21,7 @@ public function __construct($host='localhost', $port=41380, $login='', $password
21
21
22
22
public function getUsers ()
23
23
{
24
- return json_decode ($ this ->curl ->get (sprintf ("%s/users/ " , $ this ->curl ->url )), TRUE );
24
+ return json_decode ($ this ->curl ->get (sprintf ("%s/users/ " , $ this ->curl ->url ))-> body , TRUE );
25
25
}
26
26
27
27
public function getUser ($ userid )
@@ -87,10 +87,12 @@ public function get($method='', $json=True)
87
87
{
88
88
$ url = $ this ->getUrl ($ method );
89
89
$ result = $ this ->curl ->get ($ url );
90
- if ($ json )
91
- $ result = json_decode ($ result ,TRUE );
92
- else
93
- $ result = $ result ->body ;
90
+ if ($ result ) {
91
+ if ($ json )
92
+ $ result = json_decode ($ result ->body ,TRUE );
93
+ else
94
+ $ result = $ result ->body ;
95
+ }
94
96
95
97
//if (! $result) print "FAILURE URL:[".$url."]\n";
96
98
return $ result ;
@@ -99,11 +101,12 @@ public function get($method='', $json=True)
99
101
public function post ($ vars =array ())
100
102
{
101
103
$ url = $ this ->getUrl ();
102
- $ result = json_decode ( $ this ->curl ->post ($ url , $ vars), TRUE );
104
+ $ result = $ this ->curl ->post ($ url , $ vars );
103
105
if (! $ result ) {
104
106
//print "FAILURE URL:[".$url."]\n";
105
107
return ;
106
108
}
109
+ $ result = json_decode ($ result ->body ,TRUE );
107
110
foreach ($ result [$ this ->controller ][$ this ->id ] as $ key => $ value ) {
108
111
$ this ->$ key = $ value ;
109
112
}
0 commit comments