Ignore:
Timestamp:
01/06/09 16:43:13 (15 years ago)
Author:
niltonneto
Message:

Resolve #379

File:
1 edited

Legend:

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

    r372 r569  
    301301                                        var mailbox = aux[0]; 
    302302                                        var uid_msg = aux[5]; 
    303                                         tr.id = mailbox + ";" + uid_msg; 
     303                                        tr.id = uid_msg; 
     304                                        tr.name = mailbox; 
    304305                                        var td = document.createElement("TD");                                   
    305306                                         
     
    308309                                                td.style.width = "1%";                                   
    309310                                                var subject_encode = url_encode(aux[2]); 
    310                                                 var td1 = '<input type="checkbox" id="check_box_message_'+tr.id.substr(tr.id.indexOf(';')+1)+'"></input>'; 
     311                                                var td1 = '<input type="checkbox" id="check_box_message_'+uid_msg+'"></input>'; 
    311312                                        } 
    312313                                        if( j == 1){ 
     
    350351                                } 
    351352                        } 
    352                         aux.splice(0,(aux.length));      
     353                        aux.splice(0,(aux.length)); 
    353354 
    354355                subject = tr.firstChild; 
Note: See TracChangeset for help on using the changeset viewer.