From ea2eebc34f36e87f817ee3792f8e2554e072f19e Mon Sep 17 00:00:00 2001 From: Nicolas Ganivet Date: Sun, 23 Oct 2016 15:30:34 -0600 Subject: [PATCH] Style issues. --- CRM/Utils/Mail.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CRM/Utils/Mail.php b/CRM/Utils/Mail.php index a1a0645343..213f151d29 100644 --- a/CRM/Utils/Mail.php +++ b/CRM/Utils/Mail.php @@ -264,8 +264,8 @@ class CRM_Utils_Mail { // the Bcc must not be present in $header as otherwise it will be shown to all recipients // ref: https://pear.php.net/bugs/bug.php?id=8047, full thread and answer [2011-04-19 20:48 UTC] if (get_class($mailer) != "Mail_mail") { - //get emails from headers, since these are - //combination of name and email addresses. + // get emails from headers, since these are + // combination of name and email addresses. if (!empty($headers['Cc'])) { $to[] = CRM_Utils_Array::value('Cc', $headers); } @@ -275,7 +275,7 @@ class CRM_Utils_Mail { } } - if (is_object($mailer)) { + if (is_object($mailer)) { $errorScope = CRM_Core_TemporaryErrorScope::ignoreException(); $result = $mailer->send($to, $headers, $message); if (is_a($result, 'PEAR_Error')) { -- 2.25.1