Style issues.
authorNicolas Ganivet <nicolas@cividesk.com>
Sun, 23 Oct 2016 21:30:34 +0000 (15:30 -0600)
committerNicolas Ganivet <nicolas@cividesk.com>
Sun, 23 Oct 2016 21:30:34 +0000 (15:30 -0600)
CRM/Utils/Mail.php

index a1a06453431cc579e0c0759caa2b6c00390b9a43..213f151d29f09c09dac267d04269fa4c393b4264 100644 (file)
@@ -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')) {