X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fsession-functions.php;h=95d26340ba0295bcf7cb22d5c3a75bb6263e0804;hb=188495baa4eae4327a063f99989ea503598b2174;hp=1c4fc7bbeb2c421330196fd407f03e7c71bd046b;hpb=916bba4f00ee924f0d88b8fc273dee5bfb798aed;p=mailer.git diff --git a/inc/session-functions.php b/inc/session-functions.php index 1c4fc7bbeb..95d26340ba 100644 --- a/inc/session-functions.php +++ b/inc/session-functions.php @@ -1,7 +1,7 @@ = '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: */ logDebugMessage(__FUNCTION__, __LINE__, "SET:".$var.'='.$value); + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'SET:' . $var . '=' . $value); $GLOBALS['_SESSION'][$var] = $value; - return session_register($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_register($var); + } } elseif (!empty($value)) { // Update session - //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "UPDATE:".$var.'='.$value); + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'UPDATE:' . $var . '=' . $value); $GLOBALS['_SESSION'][$var] = $value; return true; } // Ignored (but valid) - //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "IGNORED:".$var.'='.$value); + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'IGNORED:' . $var . '=' . $value); return true; } // Check wether a session variable is set function isSessionVariableSet ($var) { - //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "var={$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? if (isSessionVariableSet($var)) { @@ -90,6 +102,7 @@ function getSession ($var) { } // END - if // Return the value + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, $var . '=' . $value); return $value; } @@ -105,13 +118,12 @@ function destroyMemberSession () { // 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