X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fsession-functions.php;h=71f67ca3033d094dc5de2bb4d41b38b23a662721;hb=d570d510924be41e1e5f0329d04a0a4dede0f530;hp=4928f80f083a274e62e16d6d8c080b8570d7e105;hpb=7f5ffcc103a856b8867ac5739dcf0a3b6710413a;p=mailer.git diff --git a/inc/session-functions.php b/inc/session-functions.php index 4928f80f08..71f67ca303 100644 --- a/inc/session-functions.php +++ b/inc/session-functions.php @@ -14,8 +14,6 @@ * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * - * Needs to be in all Files and every File needs "svn propset * - * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * * Copyright (c) 2009, 2010 by Mailer Developer Team * @@ -45,7 +43,7 @@ if (!defined('__SECURITY')) { // Unset/set session variables function setSession ($var, $value) { // Abort in CSS mode here - if (getOutputMode() == 1) return true; + if (isCssOutputMode()) return true; // Trim value and session variable $var = trim(secureString($var)); $value = trim($value); @@ -119,12 +117,12 @@ function destroyMemberSession () { // Destroys the admin session function destroyAdminSession ($destroy = true) { // Kill maybe existing session variables including array elements - setSession('admin_id' , ''); - setSession('admin_md5' , ''); - setSession('admin_last', ''); + setAdminId(''); + setAdminMd5(''); + setAdminLast(''); - // Destroy session and return status - if ($destroy) { + // Destroy session if requested and return status + if ($destroy === true) { return session_destroy(); } // END - if