X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fsession.php;h=d45062c7448dfff25203852e1a2212a7c0abc15b;hb=7638ed2cdac53be2f20153011b8093aaf7349f79;hp=f3b02711625248d411212863a9e373eda9a167b8;hpb=0da26ebf67e1a6c8e5ab5f23639c6abd99d84b2d;p=mailer.git diff --git a/inc/session.php b/inc/session.php index f3b0271162..d45062c744 100644 --- a/inc/session.php +++ b/inc/session.php @@ -1,7 +1,7 @@ 0 -if (!isSessionVariableSet('refid') || (!empty($GLOBALS['refid'])) || ((get_session('refid') == "0") && ($_CONFIG['def_refid'] > 0))) { - // Set cookie - set_session("refid", $GLOBALS['refid']); -} +// Load language file(s) +loadLanguageFile(); -// Test session if index.php or modules.php is loaded -if ((basename($_SERVER['PHP_SELF']) == "index.php") || (basename($_SERVER['PHP_SELF']) == "modules.php") || (isBooleanConstantAndTrue('mxchange_installing'))) { - if (count($_SESSION) > 0) { - // Session variables accepted! - define('__COOKIES', true); - } else { - // Cookies rejected! - define('__COOKIES', false); - } -} -//* DEBUG: */ print("
".print_r($_SESSION, true)."
"); +// Determine and set referral id +determineReferralId(); -// +// [EOF] ?>