Changeset 2379


Ignore:
Timestamp:
03/30/10 10:29:54 (14 years ago)
Author:
eduardoalex
Message:

Ticket #1014 - Replicando no branch 2.1 a correção descrita no ticket em questao.

Location:
branches/2.1/expressoMail1_2/js
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2.1/expressoMail1_2/js/local_messages.js

    r2102 r2379  
    235235        } 
    236236         
     237        /**  
     238        * @Depracated Use of this function in mail_sync.js  
     239        *   
     240        */  
    237241        local_messages.prototype.insert_mail = function(msg_info,msg_header,anexos,folder) { 
    238242                try { 
     
    291295                        } 
    292296                         
    293                         if(msg_info.Unseen=="U") 
     297                        if((msg_info.Unseen=="U")|| (msg_info.Recent=="N"))  
    294298                                unseen = 1; 
    295299 
  • branches/2.1/expressoMail1_2/js/mail_sync.js

    r2066 r2379  
    298298                        id_folder = rs.field(0); 
    299299         
    300                         if(msg_info.Unseen=="U") 
     300                        if((msg_info.Unseen=="U")|| (msg_info.Recent=="N")) 
    301301                                unseen = 1; 
    302302                        this.dbGears.execute("insert into mail (mail,original_id,original_folder,header,timestamp,uid_usuario,unseen,id_folder,ffrom,subject,fto,cc,body,size) values (?,?,?,?,?,?,?,?,?,?,?,?,?,?)",[mail,original_id,original_folder,header,timestamp,login,unseen,id_folder,from,subject,to,cc,body,size]); 
Note: See TracChangeset for help on using the changeset viewer.