X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fsession-functions.php;h=4bd00ec494081aacd42a3b1fc5b20bdf67c0737b;hb=d4cff9c73632a8d93428a80dcf54b3a8daa80a24;hp=18ed9d0661030917ccd72b7da05a747530b02244;hpb=aaf81b8f35512782d34f78c1a0dac8b42d745393;p=mailer.git diff --git a/inc/session-functions.php b/inc/session-functions.php index 18ed9d0661..4bd00ec494 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); $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); @@ -90,6 +103,7 @@ function getSession ($var) { } // END - if // Return the value + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, $var . '=' . $value); return $value; } @@ -105,10 +119,9 @@ 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' , ''); + setSession('admin_id' , ''); + setSession('admin_md5' , ''); + setSession('admin_last', ''); // Destroy session and return status if ($destroy) {