From d416901b4f1c6a418fb8860b902a2f5f6f42737d Mon Sep 17 00:00:00 2001 From: jangliss Date: Sun, 27 Jul 2003 03:45:25 +0000 Subject: [PATCH] I should have probably added this many months ago when I first found out about the $_SESSION/$HTTP_SESSION_VAR not being available until a session was explicitly started. 99% of the time, this shouldn't be needed, but this function checks for an active session, and starts one if there isn't an active one. This should fix the following references for the $_ vars. Tested, and doesn't seem to break anything git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@5435 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/global.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/functions/global.php b/functions/global.php index 498700b8..955c5362 100644 --- a/functions/global.php +++ b/functions/global.php @@ -29,6 +29,8 @@ if(isset($session_name) && $session_name) { */ ini_set('magic_quotes_runtime','0'); +sqsession_is_active(); + /* convert old-style superglobals to current method * this is executed if you are running PHP 4.0.x. * it is run via a require_once directive in validate.php -- 2.25.1