Ignore:
Timestamp:
02/17/11 09:41:50 (13 years ago)
Author:
diegomoreno
Message:

Ticket #1557 - expressoMail1_2 - Ajuste na preferência Trocar remetente pelo destinatário.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2/expressoMail1_2/inc/class.imap_functions.inc.php

    r3770 r3774  
    236236                $head_array['to'] = array(); 
    237237                $tmp = ( isset( $to[0]->personal ) ) ? imap_mime_header_decode($to[0]->personal) : NULL; 
    238                 $head_array['to']['name'] = ( isset( $tmp[0]->text ) ) ? $this->decode_string($this->decode_string($tmp[0]->text)) : $head_array['from']['name'];//NULL; 
    239                 $head_array['to']['email'] = ( isset( $to[0]->mailbox ) ) ? ( $this->decode_string($to[0]->mailbox) . "@" . ( ( isset( $to[0]->host ) ) ? $to[0]->host : '' ) ) : $head_array['from']['email']; //NULL; 
     238                $head_array['to']['name'] = ( isset( $tmp[0]->text ) ) ? $this->decode_string($this->decode_string($tmp[0]->text)) : NULL; 
     239                $head_array['to']['email'] = ( isset( $to[0]->mailbox ) ) ? ( $this->decode_string($to[0]->mailbox) . "@" . ( ( isset( $to[0]->host ) ) ? $to[0]->host : '' ) ) : NULL; 
    240240                if(!$head_array['to']['name']) 
    241241                        $head_array['to']['name'] = $head_array['to']['email']; 
Note: See TracChangeset for help on using the changeset viewer.