phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] phpgwapi/inc class.log.inc.php,1.6.4.3,1.6.4.4


From: Chris Weiss <address@hidden>
Subject: [Phpgroupware-cvs] phpgwapi/inc class.log.inc.php,1.6.4.3,1.6.4.4
Date: Mon, 20 Oct 2003 14:58:39 +0000

Update of /cvsroot/phpgroupware/phpgwapi/inc
In directory subversions:/tmp/cvs-serv5154/phpgwapi/inc

Modified Files:
      Tag: Version-0_9_16-branch
        class.log.inc.php 
Log Message:
changed old key_exists to array_key_exists


Index: class.log.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/phpgwapi/inc/class.log.inc.php,v
retrieving revision 1.6.4.3
retrieving revision 1.6.4.4
diff -C2 -d -r1.6.4.3 -r1.6.4.4
*** class.log.inc.php   20 Oct 2003 14:02:41 -0000      1.6.4.3
--- class.log.inc.php   20 Oct 2003 14:58:36 -0000      1.6.4.4
***************
*** 84,88 ****
                        
                        if (    ( 
isset($GLOBALS['phpgw_info']['flags']['currentapp']) )
!                            && ( key_exists( 
$GLOBALS['phpgw_info']['flags']['currentapp'] , 
$GLOBALS['phpgw_info']['server']['log_levels']['module']) )
                             && ( 
$this->log_level_table[$GLOBALS['phpgw_info']['server']['log_levels']['module'][$GLOBALS['phpgw_info']['flags']['currentapp']]]
 >= $this->log_level_table[$level] ) ) {
                                        return true;
--- 84,88 ----
                        
                        if (    ( 
isset($GLOBALS['phpgw_info']['flags']['currentapp']) )
!                            && ( array_key_exists( 
$GLOBALS['phpgw_info']['flags']['currentapp'] , 
$GLOBALS['phpgw_info']['server']['log_levels']['module']) )
                             && ( 
$this->log_level_table[$GLOBALS['phpgw_info']['server']['log_levels']['module'][$GLOBALS['phpgw_info']['flags']['currentapp']]]
 >= $this->log_level_table[$level] ) ) {
                                        return true;
***************
*** 90,94 ****
                        
                        if (    ( 
isset($GLOBALS['phpgw_info']['user']['account_lid']) )
!                                && ( 
key_exists($GLOBALS['phpgw_info']['user']['account_lid'], 
$GLOBALS['phpgw_info']['server']['log_levels']['user']) )
                             && ( 
$this->log_level_table[$GLOBALS['phpgw_info']['server']['log_levels']['user'][$GLOBALS['phpgw_info']['user']['account_lid']]]
 >= $this->log_level_table[$level] ) ) {
                                return true;
--- 90,94 ----
                        
                        if (    ( 
isset($GLOBALS['phpgw_info']['user']['account_lid']) )
!                                && ( 
array_key_exists($GLOBALS['phpgw_info']['user']['account_lid'], 
$GLOBALS['phpgw_info']['server']['log_levels']['user']) )
                             && ( 
$this->log_level_table[$GLOBALS['phpgw_info']['server']['log_levels']['user'][$GLOBALS['phpgw_info']['user']['account_lid']]]
 >= $this->log_level_table[$level] ) ) {
                                return true;





reply via email to

[Prev in Thread] Current Thread [Next in Thread]