X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fsession-functions.php;h=95d26340ba0295bcf7cb22d5c3a75bb6263e0804;hb=feec3557f5ac09d623406186891ffbaef15f5c37;hp=f71f3e0796ce397b09ea685421ea66499b052321;hpb=90ea643fa8c32b94f6f5ed636730d87eb31bba6b;p=mailer.git diff --git a/inc/session-functions.php b/inc/session-functions.php index f71f3e0796..95d26340ba 100644 --- a/inc/session-functions.php +++ b/inc/session-functions.php @@ -17,7 +17,7 @@ * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * * Copyright (c) 2009 - 2011 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -86,14 +86,14 @@ function setSession ($var, $value) { // 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; + $value = NULL; // Is the variable there? if (isSessionVariableSet($var)) {