Removed url encoding from Nexmo message (#644)
parent
617ffb5739
commit
b59afd9d33
|
@ -5,6 +5,7 @@ Changelog
|
||||||
Not yet released
|
Not yet released
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
* #644: Fixed urlencoding in Nexmo message
|
||||||
* #639: Added combined notifications.
|
* #639: Added combined notifications.
|
||||||
* #626: Added redirect check.
|
* #626: Added redirect check.
|
||||||
* #627: Latest server output, error and output during a failure will be saved and are shown on the server page.
|
* #627: Latest server output, error and output during a failure will be saved and are shown on the server page.
|
||||||
|
|
|
@ -53,9 +53,7 @@ class Nexmo extends Core {
|
||||||
public function sendSMS($message) {
|
public function sendSMS($message) {
|
||||||
$success = 1;
|
$success = 1;
|
||||||
$error = "";
|
$error = "";
|
||||||
|
|
||||||
$message = rawurlencode($message);
|
|
||||||
|
|
||||||
foreach ($this->recipients as $recipient) {
|
foreach ($this->recipients as $recipient) {
|
||||||
|
|
||||||
$curl = curl_init();
|
$curl = curl_init();
|
||||||
|
|
Loading…
Reference in New Issue