Ignore:
Timestamp:
04/20/10 11:59:40 (14 years ago)
Author:
rodsouza
Message:

Ticket #1009 - Corrigindo problemas causados por javascripts inseridos dentro de tags.

File:
1 edited

Legend:

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

    r1913 r2604  
    276276        }        
    277277                 
    278         cExecute ('$this.ldap_functions.get_available_groups&context='+context, handler_get_available_groups); 
     278        _controller.go( { 
     279                "access" : "$this.ldap_functions.get_available_groups&context="+context, 
     280                "handler" : function( data ) 
     281                { 
     282                        handler_get_available_groups( expresso.connector.unserialize( data ) ); 
     283                } 
     284        } ); 
    279285} 
    280286         
     
    371377                } 
    372378        } 
    373         cExecute ('$this.ldap_functions.get_available_maillists&context='+context, handler_get_available_maillists); 
     379        _controller.go( { 
     380                "access" : "$this.ldap_functions.get_available_maillists&context=" + context, 
     381                "handler" : function( data ) 
     382                { 
     383                        handler_get_available_maillists( expresso.connector.unserialize( data ) ); 
     384                } 
     385        } ); 
    374386} 
    375387         
Note: See TracChangeset for help on using the changeset viewer.