Ignore:
Timestamp:
08/03/09 10:09:55 (15 years ago)
Author:
amuller
Message:

Ticket #000 - Defazendo commit errado para refazer o certo em seguida

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoMail1_2/inc/class.phpmailer.php

    r1246 r1247  
    626626            if($pos_MIME_Version >= $pos_content_type) 
    627627            { 
    628                 // nao deve enviar a msg..... O header MIME-Version com posicao invalida ...... 
     628                // nao deve enviar a msg..... O header MIME-Version com posicao invalida ...... 
    629629                $this->SetError('Formato dos headers da msg estao invalidos.(CD-17) - A'); 
    630630                $this->smtp->Reset(); 
     
    670670        } 
    671671        else 
    672         { 
    673                 $smtpSent = $this->smtp->Data($header . $body); 
    674         } 
     672                { 
     673                        $smtpSent = $this->smtp->Data($header . $body); 
     674                } 
    675675 
    676676        if(!$smtpSent) 
    677         { 
     677        { 
    678678            $this->SetError($this->Lang("data_not_accepted") .' '. $this->smtp->error['error'] .','. $this->smtp->error['smtp_code'].','. $this->smtp->error['smtp_msg']); 
    679679            $this->smtp->Reset(); 
    680680            return false; 
    681         } 
     681        } 
    682682        if($this->SMTPKeepAlive == true) 
    683683            $this->smtp->Reset(); 
Note: See TracChangeset for help on using the changeset viewer.