Changeset 4108


Ignore:
Timestamp:
04/20/11 14:47:23 (13 years ago)
Author:
rafaelraymundo
Message:

Ticket #1726 - Popup de compartilhamento de pasta erro ao exibir os contatos. r4082

File:
1 edited

Legend:

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

    r3530 r4108  
    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; 
    325                         } 
    326                 } 
     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                            } 
     327                    } 
     328                } 
    327329                oWait.innerHTML = '&nbsp;'; 
    328330        } 
Note: See TracChangeset for help on using the changeset viewer.