X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fsession-functions.php;h=f71f3e0796ce397b09ea685421ea66499b052321;hb=668d3df20156d5dbd4f34342eeadcbd5d420a8f5;hp=226cad91342fc000fc493412ac9e01470582469c;hpb=c8d76610eb94093d4eed4fcd8a6cb72e74c8f6d8;p=mailer.git diff --git a/inc/session-functions.php b/inc/session-functions.php index 226cad9134..f71f3e0796 100644 --- a/inc/session-functions.php +++ b/inc/session-functions.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * + * Copyright (c) 2009 - 2011 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -46,7 +46,8 @@ function setSession ($var, $value) { if (isCssOutputMode()) return true; // Trim value and session variable - $var = trim(secureString($var)); $value = trim($value); + $var = trim(secureString($var)); + $value = trim($value); // Is the session variable set? if (('' . $value . '' == '') && (isSessionVariableSet($var))) { @@ -91,7 +92,7 @@ function isSessionVariableSet ($var) { // Returns wether the value of the session variable or NULL if not set function getSession ($var) { - // Default is not found! ;-) + // Default is not found ;-) $value = null; // Is the variable there? @@ -117,12 +118,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(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