Changeset 347 for trunk


Ignore:
Timestamp:
Mar 4, 2009 1:16:41 AM (15 years ago)
Author:
dan
Message:

There was a strange "special caracter" or something causing this file to trow an error when it was included.... So strange. I narrowed it down to one line and then had to retype the line. Absolutly bizarre.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/Email.inc.php

    r346 r347  
    313313            $ret = mb_send_mail($final_to, $this->_params['subject'], $final_body, $final_headers);
    314314        } else {
    315 `           $ret = mb_send_mail($final_to, $this->_params['subject'], $final_body, $final_headers, $envelope_sender_header);
    316         }
     315            $ret = mb_send_mail($final_to, $this->_params['subject'], $final_body, $final_headers, $envelope_sender_header);
     316        }
     317       
    317318        // Ensure message was successfully accepted for delivery.
    318319        if ($ret) {
     
    322323            $app->logMsg(sprintf('Email failure with parameters: %s, %s, %s, %s', $final_to, $this->_params['subject'], str_replace("\r\n", '\r\n', $final_headers), $envelope_sender_header), LOG_NOTICE, __FILE__, __LINE__);
    323324            return false;
    324         }
    325        
     325        }
    326326    }
    327327
Note: See TracChangeset for help on using the changeset viewer.