Changeset 6365


Ignore:
Timestamp:
05/31/12 15:44:06 (12 years ago)
Author:
angelo
Message:

Ticket #2820 - Na tela de busca do servidor o campo assunto aceita tags html

File:
1 edited

Legend:

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

    r6232 r6365  
    706706                        if( j == 9 ) 
    707707                        { 
    708                                 var subject_encode = url_encode(subject); 
    709  
    710                                 if (! subject_encode) 
    711                                         aux.subject = get_lang("no subject") + "..."; 
     708                                //var subject_encode = url_encode(subject); 
     709                                aux.subject = html_entities(aux.subject); 
     710                                if (aux.subject.length <= 1) 
     711                                        aux.subject = "(" + get_lang("no subject") + ")"; 
    712712                                if (aux.subject.length > 70) 
    713713                                        aux.subject = aux.subject.substr(0,70) + "..."; 
Note: See TracChangeset for help on using the changeset viewer.