phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] phpgroupware index.php,1.110.2.2.2.5


From: skwashd
Subject: [Phpgroupware-cvs] phpgroupware index.php,1.110.2.2.2.5
Date: Wed, 16 Nov 2005 00:34:00 +0100

Update of phpgroupware

Modified Files:
     Branch: Version-0_9_16-branch
            index.php lines: +4 -3

Log Message:
keep thorie happy and make is a little cleaner

====================================================
Index: phpgroupware/index.php
diff -u phpgroupware/index.php:1.110.2.2.2.4 
phpgroupware/index.php:1.110.2.2.2.5
--- phpgroupware/index.php:1.110.2.2.2.4        Sun May 18 15:21:05 2003
+++ phpgroupware/index.php      Tue Nov 15 23:34:09 2005
@@ -18,12 +18,13 @@
                exit;
        }

-       $GLOBALS['sessionid'] = isset($_GET['sessionid']) ? $_GET['sessionid'] 
: $_COOKIE['sessionid'];
-       if (! $GLOBALS['sessionid'])
+       if ( !isset($_REQUEST['sessionid']) || !strlen($_REQUEST['sessionid']) )
        {
                Header('Location: login.php');
                exit;
        }
+       $GLOBALS['sessionid'] =& $_REQUEST['sessionid'];
+

        /*
                This is the preliminary menuaction driver for the new 
multi-layered design






reply via email to

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