Ignore:
Timestamp:
09/11/08 16:42:44 (16 years ago)
Author:
rafaelraymundo
Message:

Melhoria implementada, relativo a ocorrencia #314 da comunidade.
Contatos dinamicos no envio de emails de forma configuravel.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoMail1_2/js/DropDownContacts.js

    r376 r413  
    5959                                tmp[1] = tmp[1].replace(tmp_mail, tmp_mail.bold()); 
    6060                                tmp[0] = tmp[0].replace(tmp_mail, tmp_mail.bold()); 
    61                                 match_contacts[match_index] = '"' + tmp[0] + '" <' + tmp[1] + '>'; 
     61                                if(tmp[0] == '') 
     62                                        match_contacts[match_index] = tmp[0] + ' <' + tmp[1] + '>'; 
     63                                else 
     64                                        match_contacts[match_index] = '$"' + tmp[0] + '" <' + tmp[1] + '>'; 
    6265                                match_index++; 
    6366                        } 
Note: See TracChangeset for help on using the changeset viewer.