From 617c66190df4b5ae3361fa746487bc2ffe38f1cb Mon Sep 17 00:00:00 2001 From: TimZ99 Date: Fri, 7 Sep 2018 17:40:27 +0200 Subject: [PATCH] Added changes to changelog --- CHANGELOG.rst | 1 + src/psm/Txtmsg/Nexmo.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 22f5c1c2..4ac4c4e5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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. diff --git a/src/psm/Txtmsg/Nexmo.php b/src/psm/Txtmsg/Nexmo.php index ce0ff001..a4bf51ff 100644 --- a/src/psm/Txtmsg/Nexmo.php +++ b/src/psm/Txtmsg/Nexmo.php @@ -53,7 +53,7 @@ class Nexmo extends Core { public function sendSMS($message) { $success = 1; $error = ""; - + foreach ($this->recipients as $recipient) { $curl = curl_init();