Changeset 4584


Ignore:
Timestamp:
06/03/11 11:58:24 (13 years ago)
Author:
niltonneto
Message:

Ticket #1962 - Corrigido problema do envio em texto plano.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2/expressoMail1_2/js/main.js

    r4540 r4584  
    17181718        mail_type.name = 'type'; 
    17191719        mail_type.value = ( mail_as_plain ) ? 'plain' : 'html'; 
    1720         form.parentNode.appendChild(mail_type);  
     1720        form.appendChild(mail_type);  
    17211721 
    17221722        var _subject = trim(Element("subject_"+ID).value); 
     
    19951995        mail_type.setAttribute('type', 'hidden'); 
    19961996        mail_type.value = ( mail_as_plain ) ? 'plain' : 'html'; 
    1997         form.parentNode.appendChild(mail_type); 
     1997        form.appendChild(mail_type); 
    19981998 
    19991999        cExecuteForm ("$this.imap_functions.save_msg", form, handler_save_msg,border_id); 
Note: See TracChangeset for help on using the changeset viewer.