Removed url encoding from Nexmo message (#644)

This commit is contained in:
Tim 2018-09-08 13:54:09 +02:00 committed by GitHub
parent 617ffb5739
commit b59afd9d33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -5,6 +5,7 @@ Changelog
Not yet released
----------------
* #644: Fixed urlencoding in Nexmo message
* #639: Added combined notifications.
* #626: Added redirect check.
* #627: Latest server output, error and output during a failure will be saved and are shown on the server page.

View File

@ -53,9 +53,7 @@ class Nexmo extends Core {
public function sendSMS($message) {
$success = 1;
$error = "";
$message = rawurlencode($message);
foreach ($this->recipients as $recipient) {
$curl = curl_init();