X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fsession-functions.php;h=7bfb18c901742d31e4ddaf75580f42f3581bfdb3;hb=0b3c067e92787167d135981d4fe6f3a039bad0af;hp=4bd00ec494081aacd42a3b1fc5b20bdf67c0737b;hpb=71c07e991fc7f5393317f4d9adf4ecdbc26b9aa3;p=mailer.git diff --git a/inc/session-functions.php b/inc/session-functions.php index 4bd00ec494..7bfb18c901 100644 --- a/inc/session-functions.php +++ b/inc/session-functions.php @@ -14,11 +14,9 @@ * $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 * + * 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 * @@ -93,7 +91,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? @@ -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(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