Changeset 4082


Ignore:
Timestamp:
04/20/11 10:15:58 (13 years ago)
Author:
roberto.santosjunior
Message:

Ticket #1633 - Popup de compartilhamento de pasta erro ao exibir os contatos

File:
1 edited

Legend:

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

    r3530 r4082  
    317317                 
    318318                //Inclui usuário começando com a pesquisa 
    319                 for(i = 0; i < select_available_users_clone.length; i++){ 
    320                         if (RegExp_name.test(select_available_users_clone[i].text)) 
    321                         { 
    322                                 sel = select_available_users_tmp.options; 
    323                                 option = new Option(select_available_users_clone[i].text,select_available_users_clone[i].value);                                 
    324                                 sel[sel.length] = option; 
     319                if (typeof(select_available_users_clone)  != "undefined"){ 
     320                        for(i = 0; i < select_available_users_clone.length; i++){ 
     321                                if (RegExp_name.test(select_available_users_clone[i].text)) 
     322                                { 
     323                                        sel = select_available_users_tmp.options; 
     324                                        option = new Option(select_available_users_clone[i].text,select_available_users_clone[i].value);                                 
     325                                        sel[sel.length] = option; 
     326                                } 
    325327                        } 
    326328                } 
Note: See TracChangeset for help on using the changeset viewer.