X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fsession-functions.php;h=495c36625f5aebd49d607012538dc3847f472a5a;hb=e9d9b430aa90c0519671702ce9fe13fc497451d6;hp=a3c2596626dd129e320fbdf9715b2ab884d59f46;hpb=452578b5bf17d14099ee44956deb4e4dc0832874;p=mailer.git diff --git a/inc/session-functions.php b/inc/session-functions.php index a3c2596626..495c36625f 100644 --- a/inc/session-functions.php +++ b/inc/session-functions.php @@ -10,10 +10,10 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Sitzungsrelevante Funktionen * * -------------------------------------------------------------------- * - * $Revision:: 856 $ * - * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. Mär 2009) $ * + * $Revision:: $ * + * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * - * $Author:: stelzi $ * + * $Author:: $ * * Needs to be in all Files and every File needs "svn propset * * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * @@ -38,38 +38,38 @@ // Some security stuff... if (!defined('__SECURITY')) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4)."/security.php"; + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); } // Unset/set session variables -function set_session ($var, $value) { +function setSession ($var, $value) { // Abort in CSS mode here - if ($GLOBALS['output_mode'] == 1) return true; + if (getOutputMode() == 1) return true; // Trim value and session variable $var = trim(SQL_ESCAPE($var)); $value = trim($value); // Is the session variable set? - if (("".$value."" == "") && (isSessionVariableSet($var))) { + if (("".$value."" == '') && (isSessionVariableSet($var))) { // Remove the session - //* DEBUG: */ echo "UNSET:".$var."=".get_session($var)."
\n"; + //* DEBUG: */ echo "UNSET:".$var.'='.getSession($var)."
\n"; unset($_SESSION[$var]); return session_unregister($var); } elseif (("".$value."" != '') && (!isSessionVariableSet($var))) { // Set session - //* DEBUG: */ echo "SET:".$var."=".$value."
\n"; + //* DEBUG: */ echo "SET:".$var.'='.$value."
\n"; $_SESSION[$var] = $value; return session_register($var); } elseif (!empty($value)) { // Update session - //* DEBUG: */ echo "UPDATE:".$var."=".$value."
\n"; + //* DEBUG: */ echo "UPDATE:".$var.'='.$value."
\n"; $_SESSION[$var] = $value; return true; } // Ignored (but valid) - //* DEBUG: */ echo "IGNORED:".$var."=".$value."
\n"; + //* DEBUG: */ echo "IGNORED:".$var.'='.$value."
\n"; return true; } @@ -80,7 +80,7 @@ function isSessionVariableSet ($var) { } // Returns wether the value of the session variable or NULL if not set -function get_session ($var) { +function getSession ($var) { // Default is not found! ;-) $value = null; @@ -103,21 +103,21 @@ function get_session ($var) { } // Destroy user session -function destroy_user_session () { +function destroyUserSession () { // Reset userid setUserId(0); // Remove all user data from session - return ((set_session('userid', "")) && (set_session('u_hash', ""))); + return ((setSession('userid', '')) && (setSession('u_hash', ''))); } // Destroys the admin session function destroyAdminSession ($destroy = true) { // Kill maybe existing session variables including array elements - set_session('admin_login', ""); - set_session('admin_md5' , ""); - set_session('admin_last' , ""); - set_session('admin_to' , ""); + setSession('admin_login', ''); + setSession('admin_md5' , ''); + setSession('admin_last' , ''); + setSession('admin_to' , ''); // Destroy session and return status if ($destroy) {