Ignore:
Timestamp:
04/12/10 16:21:32 (14 years ago)
Author:
pedroerp
Message:

Ticket #993 - Trocando acessos à GLOBALS por acessos à Settings.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sandbox/workflow/branches/993/inc/class.ui_adminactivities.inc.php

    r2372 r2492  
    7474                $this->workflow_acl = Factory::getInstance('workflow_acl'); 
    7575                $denyAccess = true; 
    76                 if ($this->workflow_acl->checkWorkflowAdmin($GLOBALS['phpgw_info']['user']['account_id'])) 
     76                if ($this->workflow_acl->checkWorkflowAdmin(Settings::get('expresso', 'user', 'account_id'))) 
    7777                { 
    7878                        /* the user is an Expresso/Workflow admin */ 
     
    8585                                /* check if the user can admin the informed process */ 
    8686                                if ($this->wf_p_id != 0) 
    87                                         $denyAccess = !$this->workflow_acl->check_process_access($GLOBALS['phpgw_info']['user']['account_id'], $this->wf_p_id); 
     87                                        $denyAccess = !$this->workflow_acl->check_process_access(Settings::get('expresso', 'user', 'account_id'), $this->wf_p_id); 
    8888                                else 
    8989                                        $denyAccess = false; 
Note: See TracChangeset for help on using the changeset viewer.