X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fsession-functions.php;h=5421c1f013a55d2512f3c137b3675a4d17e51bb4;hb=e5527fd38a6585c8466dc28d013f12d21eb7c07a;hp=f7a21be84fca9d50b0a1c9f71bc4622edbfcd19a;hpb=cd7d344ea7007cfa20413acd3e03e50f0ab86d86;p=mailer.git diff --git a/inc/session-functions.php b/inc/session-functions.php index f7a21be84f..5421c1f013 100644 --- a/inc/session-functions.php +++ b/inc/session-functions.php @@ -100,7 +100,7 @@ function getSession ($var) { // Is the variable there? if (isSessionVariableSet($var)) { // Then get it secured! - $value = SQL_ESCAPE($GLOBALS['_SESSION'][$var]); + $value = sqlEscapeString($GLOBALS['_SESSION'][$var]); } // END - if // Return the value @@ -150,14 +150,14 @@ function destroyAdminSession ($destroy = FALSE) { // Destroys session and resets some "caches" function destroySession () { // Unset "cache" - unset($GLOBALS['isSessionValid']); + unset($GLOBALS['isValidSession']); // Destroy session return session_destroy(); } // Checks whether the session is valid -function isSessionValid () { +function isValidSession () { // Is there cache? if (!isset($GLOBALS[__FUNCTION__])) { // Then determine it