From 76014c431e1640bea86d3dca67811e572a913a6d Mon Sep 17 00:00:00 2001 From: yashodha Date: Thu, 29 Oct 2015 15:05:34 +0530 Subject: [PATCH] CRM-17331: Mass SMSes are not being sent, even though send schedules SMS -job completes without errors ---------------------------------------- * CRM-17331: Mass SMSes are not being sent, even though "send schedules SMS"-job completes without errors https://issues.civicrm.org/jira/browse/CRM-17331 --- CRM/Mailing/BAO/Mailing.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Mailing/BAO/Mailing.php b/CRM/Mailing/BAO/Mailing.php index 120807b024..7b2b0b910f 100644 --- a/CRM/Mailing/BAO/Mailing.php +++ b/CRM/Mailing/BAO/Mailing.php @@ -1749,7 +1749,7 @@ ORDER BY civicrm_email.is_bulkmail DESC if (empty($params['_skip_evil_bao_auto_recipients_'])) { // check if it's sms $mode = $mailing->sms_provider_id ? 'sms' : NULL; - self::getRecipients($job->id, $mailing->id, NULL, NULL, TRUE, $mailing->dedupe_email, $mode); + self::getRecipients($job->id, $mailing->id, TRUE, $mailing->dedupe_email, $mode); } } -- 2.25.1