Ignore:
Timestamp:
04/10/07 10:21:10 (17 years ago)
Author:
niltonneto
Message:

* empty log message *

Location:
trunk/expressoAdmin1_2/inc
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoAdmin1_2/inc/class.db_functions.inc.php

    r9 r13  
    1010         
    1111        function db_functions(){ 
    12                 $GLOBALS['phpgw_info']['server'] = $_SESSION['phpgw_info']['expresso']['server']; 
     12                 
     13                if (is_array($_SESSION['phpgw_info']['expresso']['server'])) 
     14                        $GLOBALS['phpgw_info']['server'] = $_SESSION['phpgw_info']['expresso']['server']; 
     15                else 
     16                        $_SESSION['phpgw_info']['expresso']['server'] = $GLOBALS['phpgw_info']['server']; 
     17                 
    1318                $this->db = new db(); 
    1419                $this->db->Halt_On_Error = 'no'; 
  • trunk/expressoAdmin1_2/inc/class.functions.inc.php

    r2 r13  
    3030                function functions() 
    3131                { 
    32                         //$this->nextmatchs = createobject('phpgwapi.nextmatchs'); 
    3332                        $this->db_functions = new db_functions; 
    3433                } 
  • trunk/expressoAdmin1_2/inc/class.uiaccounts.inc.php

    r11 r13  
    9595                                'context'                                       => $context, 
    9696                                'context_display'                       => $context_display, 
     97                                'imapDelimiter'                         => $_SESSION['phpgw_info']['expresso']['email_server']['imapDelimiter'],  
    9798                                 
    9899                                'lang_create_user'                      => lang('Create User'), 
     
    153154 
    154155                                        if ($can_rename) 
    155                                                 $p->set_var('row_rename',"<a href='#' onClick='javascript:rename_user(\"".$account['account_lid']."\",\"".$account['account_id']."\",\"".$context."\");'>Renomear</a>");                                                 
     156                                                $p->set_var('row_rename',"<a href='#' onClick='javascript:rename_user(\"".$account['account_lid']."\",\"".$account['account_id']."\",\"".$context."\");'>Renomear</a>"); 
    156157                                        else 
    157158                                                $p->set_var('row_rename','&nbsp;'); 
Note: See TracChangeset for help on using the changeset viewer.