phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] CVS: phpgroupware index.php,1.110.2.2,1.110.2.2.2.1


From: Dave Hall <address@hidden>
Subject: [Phpgroupware-cvs] CVS: phpgroupware index.php,1.110.2.2,1.110.2.2.2.1
Date: Sun, 18 May 2003 02:53:11 -0400

Update of /cvsroot/phpgroupware/phpgroupware
In directory subversions:/tmp/cvs-serv8363

Modified Files:
      Tag: Version-0_9_16-branch
        index.php 
Log Message:
globals fix

Index: index.php
===================================================================
RCS file: /cvsroot/phpgroupware/phpgroupware/index.php,v
retrieving revision 1.110.2.2
retrieving revision 1.110.2.2.2.1
diff -C2 -r1.110.2.2 -r1.110.2.2.2.1
*** index.php   15 May 2002 13:42:21 -0000      1.110.2.2
--- index.php   18 May 2003 06:53:08 -0000      1.110.2.2.2.1
***************
*** 13,17 ****
  
        $phpgw_info = array();
!       $GLOBALS['sessionid'] = @$GLOBALS['HTTP_GET_VARS']['sessionid'] ? 
@$GLOBALS['HTTP_GET_VARS']['sessionid'] : 
@$GLOBALS['HTTP_COOKIE_VARS']['sessionid'];
        if (! $GLOBALS['sessionid'])
        {
--- 13,17 ----
  
        $phpgw_info = array();
!       $GLOBALS['sessionid'] = get_var('sessionid',array('GET','COOKIE'));
        if (! $GLOBALS['sessionid'])
        {
***************
*** 23,29 ****
                This is the preliminary menuaction driver for the new 
multi-layered design
        */
!       if (@isset($GLOBALS['HTTP_GET_VARS']['menuaction']))
        {
!               list($app,$class,$method) = 
explode('.',$GLOBALS['HTTP_GET_VARS']['menuaction']);
                if (! $app || ! $class || ! $method)
                {
--- 23,29 ----
                This is the preliminary menuaction driver for the new 
multi-layered design
        */
!       if (@isset($_GET['menuaction']))
        {
!               list($app,$class,$method) = explode('.',$_GET['menuaction']);
                if (! $app || ! $class || ! $method)
                {
***************
*** 99,103 ****
                $GLOBALS['phpgw']->log->commit();
  
!               $phpgw->redirect($GLOBALS['phpgw']->link('/home.php'));
                /*
                $_obj = CreateObject('home.home');
--- 99,103 ----
                $GLOBALS['phpgw']->log->commit();
  
!               
$GLOBALS['phpgw']->redirect($GLOBALS['phpgw']->link('/home.php'));
                /*
                $_obj = CreateObject('home.home');





reply via email to

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