Ignore:
Timestamp:
01/13/09 18:10:51 (15 years ago)
Author:
niltonneto
Message:

Resolve #392

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoAdmin1_2/js/jscode/users.js

    r540 r594  
    195195} 
    196196 
    197 function gera_login(first_name,second_name) { 
     197function generate_login(first_name,second_name) { 
    198198        if ((first_name=='') || (second_name=='')) { 
    199199                alert(get_lang("You must type the first and the second name before generate the login")); 
     
    205205        var attributes = connector.serialize(attrs_array); 
    206206         
    207         var hangler_gera_login = function(data) { 
     207        var handler_generate_login = function(data) { 
    208208                if(data['status']) { 
    209209                        document.getElementById('uid').value = data['msg']; 
     
    215215        } 
    216216 
    217         cExecute ('$this.ldap_functions.gera_login&attributes='+attributes, hangler_gera_login); 
     217        cExecute ('$this.ldap_functions.generate_login&attributes='+attributes, handler_generate_login); 
    218218} 
    219219 
Note: See TracChangeset for help on using the changeset viewer.