Skip to content

Commit c849887

Browse files
committedJan 27, 2014
HTTP: fix example client for PHP < 5.2
1 parent fef29f3 commit c849887

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed
 

‎contrib/dbmailclient.php

+9-6
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public function __construct($host='localhost', $port=41380, $login='', $password
2121

2222
public function getUsers()
2323
{
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);
2525
}
2626

2727
public function getUser($userid)
@@ -87,10 +87,12 @@ public function get($method='', $json=True)
8787
{
8888
$url = $this->getUrl($method);
8989
$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+
}
9496

9597
//if (! $result) print "FAILURE URL:[".$url."]\n";
9698
return $result;
@@ -99,11 +101,12 @@ public function get($method='', $json=True)
99101
public function post($vars=array())
100102
{
101103
$url = $this->getUrl();
102-
$result = json_decode($this->curl->post($url, $vars),TRUE);
104+
$result = $this->curl->post($url, $vars);
103105
if (! $result) {
104106
//print "FAILURE URL:[".$url."]\n";
105107
return;
106108
}
109+
$result = json_decode($result->body,TRUE);
107110
foreach($result[$this->controller][$this->id] as $key => $value) {
108111
$this->$key = $value;
109112
}

0 commit comments

Comments
 (0)