X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fsession-functions.php;h=95d26340ba0295bcf7cb22d5c3a75bb6263e0804;hb=846ac0998b0735e3c538de5b3c22e4e199cb2cb2;hp=6a47b648dde0e024bcb220ae38435e208f991e47;hpb=36c3c8b749a88ce05ad0fda81e00047f9cb5433f;p=mailer.git diff --git a/inc/session-functions.php b/inc/session-functions.php index 6a47b648dd..95d26340ba 100644 --- a/inc/session-functions.php +++ b/inc/session-functions.php @@ -1,7 +1,7 @@ "); - unset($_SESSION[$var]); - return session_unregister($var); - } elseif (("".$value."" != '') && (!isSessionVariableSet($var))) { + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'UNSET:' . $var . '=' . getSession($var)); + unset($GLOBALS['_SESSION'][$var]); + if (phpversion() >= '5.3.1') { + // session_unregister() is deprecated as of 5.3.1 + return true; + } else { + // PHP version < 5.3.1 + return session_unregister($var); + } + } elseif (('' . $value . '' != '') && (!isSessionVariableSet($var))) { // Set session - //* DEBUG: */ OUTPUT_HTML("SET:".$var.'='.$value."
"); - $_SESSION[$var] = $value; - return session_register($var); + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'SET:' . $var . '=' . $value); + $GLOBALS['_SESSION'][$var] = $value; + if (phpversion() >= '5.3.1') { + // session_unregister() is deprecated as of 5.3.1 + return true; + } else { + // PHP version < 5.3.1 + return session_register($var); + } } elseif (!empty($value)) { // Update session - //* DEBUG: */ OUTPUT_HTML("UPDATE:".$var.'='.$value."
"); - $_SESSION[$var] = $value; + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'UPDATE:' . $var . '=' . $value); + $GLOBALS['_SESSION'][$var] = $value; return true; } // Ignored (but valid) - //* DEBUG: */ OUTPUT_HTML("IGNORED:".$var.'='.$value."
"); + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'IGNORED:' . $var . '=' . $value); return true; } // Check wether a session variable is set function isSessionVariableSet ($var) { - //* DEBUG: */ OUTPUT_HTML(__FUNCTION__."(".__LINE__."):var={$var}
"); - return (isset($_SESSION[$var])); + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'var=' . $var . ' set in session'); + return (isset($GLOBALS['_SESSION'][$var])); } // Returns wether the value of the session variable or NULL if not set function getSession ($var) { - // Default is not found! ;-) - $value = null; + // Default is not found ;-) + $value = NULL; - // Is the variable there or cached values? - if (isset($GLOBALS['cache_array']['session'][$var])) { - // Get cached value (skips a lot SQL_ESCAPE() calles! - //* DEBUG: */ OUTPUT_HTML(__FUNCTION__."(".__LINE__."): ".$var."-CACHE!
"); - $value = $GLOBALS['cache_array']['session'][$var]; - } elseif (isSessionVariableSet($var)) { + // Is the variable there? + if (isSessionVariableSet($var)) { // Then get it secured! - //* DEBUG: */ OUTPUT_HTML(__FUNCTION__."(".__LINE__."): ".$var."-RESOLVE!
"); - $value = SQL_ESCAPE($_SESSION[$var]); - - // Cache the value - $GLOBALS['cache_array']['session'][$var] = $value; + $value = SQL_ESCAPE($GLOBALS['_SESSION'][$var]); } // END - if // Return the value + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, $var . '=' . $value); return $value; } // Destroy user session -function destroyUserSession () { +function destroyMemberSession () { // Reset userid - setUserId(0); + initMemberId(); // Remove all user data from session return ((setSession('userid', '')) && (setSession('u_hash', ''))); @@ -114,13 +118,12 @@ function destroyUserSession () { // Destroys the admin session function destroyAdminSession ($destroy = true) { // Kill maybe existing session variables including array elements - setSession('admin_login', ''); - setSession('admin_md5' , ''); - setSession('admin_last' , ''); - setSession('admin_to' , ''); + setAdminId(0); + setAdminMd5(''); + setAdminLast(''); - // Destroy session and return status - if ($destroy) { + // Destroy session if requested and return status + if ($destroy === true) { return session_destroy(); } // END - if