From: tschuettler Date: Mon, 26 Sep 2016 16:03:54 +0000 (+0200) Subject: Update Mailing.php X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=38001e709f775a5b84f61f9becbfdad60a9388af;p=civicrm-core.git Update Mailing.php removed whitespace --- diff --git a/api/v3/Mailing.php b/api/v3/Mailing.php index 8ada60546b..c456276c75 100644 --- a/api/v3/Mailing.php +++ b/api/v3/Mailing.php @@ -589,7 +589,7 @@ function civicrm_api3_mailing_send_test($params) { $testEmailParams = _civicrm_api3_generic_replace_base_params($params); $testEmailParams['is_test'] = 1; $testEmailParams['status'] = 'Scheduled'; - $testEmailParams['scheduled_date'] = CRM_Utils_Date::processDate(date('Y-m-d'), date('H:i:s')); + $testEmailParams['scheduled_date'] = CRM_Utils_Date::processDate(date('Y-m-d'), date('H:i:s')); $job = civicrm_api3('MailingJob', 'create', $testEmailParams); $testEmailParams['job_id'] = $job['id']; $testEmailParams['emails'] = array_key_exists('test_email', $testEmailParams) ? explode(',', $testEmailParams['test_email']) : NULL;