From ff228779b98e97b3ec2ed0a4705430f929e99a20 Mon Sep 17 00:00:00 2001 From: f0o Date: Tue, 20 Oct 2015 20:32:22 +0000 Subject: [PATCH] Fix cliackatell's to --- includes/alerts/transport.clickatell.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/alerts/transport.clickatell.php b/includes/alerts/transport.clickatell.php index 638ac332d7..02d1f5a919 100644 --- a/includes/alerts/transport.clickatell.php +++ b/includes/alerts/transport.clickatell.php @@ -21,7 +21,7 @@ * @subpackage Alerts */ -$data = array("api_id" => $opts['api_id'], "user" => $opts['user'], "password" => $opts['password'], "to" => $opts['to'], "text" => $obj['title']); +$data = array("api_id" => $opts['api_id'], "user" => $opts['user'], "password" => $opts['password'], "to" => implode(',',$opts['to']), "text" => $obj['title']); if (!empty($opts['from'])) { $data['from'] = $opts['from']; }