3
This commit is contained in:
@@ -402,9 +402,9 @@ class HttpClient
|
|||||||
$this->host .= ':' . $this->port;
|
$this->host .= ':' . $this->port;
|
||||||
}
|
}
|
||||||
if ($this->isSSL) {
|
if ($this->isSSL) {
|
||||||
return $this->curl('https://' . $this->host . '/' . $url, $data);
|
return $this->curl($this->host . '/' . $url, $data);
|
||||||
} else {
|
} else {
|
||||||
return $this->curl('http://' . $this->host . '/' . $url, $data);
|
return $this->curl($this->host . '/' . $url, $data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user