X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fsession.php;h=e8b9e2331719b5404bb4632c1fae971f8aeee82a;hb=0a970ebc2802a923880ae0119370800625b93a5d;hp=1d5a04c60b7839f2dcd2527aef3be31b6547e3fd;hpb=addbb8351784d33ba1c7ebc52771defd09ddf2f0;p=mailer.git diff --git a/inc/session.php b/inc/session.php index 1d5a04c60b..e8b9e23317 100644 --- a/inc/session.php +++ b/inc/session.php @@ -1,7 +1,7 @@ 0 -if (empty($_COOKIE['refid']) || (!empty($GLOBALS['refid'])) || (($_COOKIE['refid'] == "0") && ($CONFIG['def_refid'] > 0))) { - // Set cookie - @setcookie("refid", $GLOBALS['refid'], (time() + $CONFIG['online_timeout']), COOKIE_PATH); -} - -// Test cookies if index.php or modules.php is loaded -if ((basename($_SERVER['PHP_SELF']) == "index.php") || (basename($_SERVER['PHP_SELF']) == "modules.php") || (mxchange_installing)) -{ - if (count($_COOKIE) > 0) - { - // Cookies accepted! - define('__COOKIES', true); - } - else - { - // Cookies rejected! - define('__COOKIES', false); - } -} -// +if (!defined('__SECURITY')) { + exit(); +} // END - if + +// Is ext-sql_patches there and newer? +if (isExtensionInstalledAndNewer('sql_patches', '0.5.3')) { + // Set session save path if set + if ((isConfigEntrySet('session_save_path')) && (getConfig('session_save_path') != '')) { + // Please make sure this valid! + session_save_path(getConfig('session_save_path')); + } // END - if +} // END - if + +// Is a session id there? +if (session_id() == '') { + // Start the session + $GLOBALS['valid_session'] = session_start(); +} // END - if + +// Load language file(s) +loadLanguageFile(); + +// [EOF] ?>