mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-04 17:44:38 +09:00
Fix compatibility issues in CoolSMS library
This commit is contained in:
parent
c719fc0500
commit
7e94c631d6
1 changed files with 2 additions and 2 deletions
|
|
@ -85,7 +85,7 @@ class Coolsms
|
||||||
// Set curl info
|
// Set curl info
|
||||||
curl_setopt($ch, CURLOPT_URL, $url);
|
curl_setopt($ch, CURLOPT_URL, $url);
|
||||||
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // check SSL certificate
|
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // check SSL certificate
|
||||||
curl_setopt($ch, CURLOPT_SSLVERSION, 3); // SSL protocol version (need for https connect, 3 -> SSLv3)
|
//curl_setopt($ch, CURLOPT_SSLVERSION, 3); // SSL protocol version (need for https connect, 3 -> SSLv3)
|
||||||
curl_setopt($ch, CURLOPT_HEADER, 0); // include the header in the output (1 = true, 0 = false)
|
curl_setopt($ch, CURLOPT_HEADER, 0); // include the header in the output (1 = true, 0 = false)
|
||||||
curl_setopt($ch, CURLOPT_POST, $this->is_post); // POST GET method
|
curl_setopt($ch, CURLOPT_POST, $this->is_post); // POST GET method
|
||||||
|
|
||||||
|
|
@ -126,7 +126,7 @@ class Coolsms
|
||||||
if ($key != "text") $val = trim($val);
|
if ($key != "text") $val = trim($val);
|
||||||
|
|
||||||
if ($key == "image") {
|
if ($key == "image") {
|
||||||
$this->content[$key] = '@' . realpath("$val");
|
$this->content[$key] = curl_file_create(realpath($val));
|
||||||
} else {
|
} else {
|
||||||
$this->content[$key] = sprintf("%s", $val);
|
$this->content[$key] = sprintf("%s", $val);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue