From: Nicolas Ganivet Date: Sun, 23 Oct 2016 21:30:34 +0000 (-0600) Subject: Style issues. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=ea2eebc34f36e87f817ee3792f8e2554e072f19e;p=civicrm-core.git Style issues. --- 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')) {