X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fonline_functions.php;h=7d1eb61339e95b7faec89c03b4371c98c7a259c4;hb=3afdce4fe00b4af570122ce7b8158ced44aec7d3;hp=caa3c71c0bdcf1b7e8ded4c395bb478690708d23;hpb=e01fcf1ca8ddeb72af76465df3ef72301a1cdae7;p=mailer.git diff --git a/inc/libs/online_functions.php b/inc/libs/online_functions.php index caa3c71c0b..7d1eb61339 100644 --- a/inc/libs/online_functions.php +++ b/inc/libs/online_functions.php @@ -10,10 +10,10 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Online-Funktionen * * -------------------------------------------------------------------- * - * $Revision:: 856 $ * - * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. March 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,34 +38,34 @@ // 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); } // Filter for updates/extends on the online list function FILTER_UPDATE_ONLINE_LIST () { // Do not update online list when extension is deactivated - if (!EXT_IS_ACTIVE("online", true)) return; + if (!EXT_IS_ACTIVE('online', true)) return; // Empty session? - if (session_id() == "") { + if (session_id() == '') { // This is invalid here! debug_report_bug("Invalid session."); } // END - if // Initialize variables - $uid = 0; $rid = 0; $MEM = "N"; $ADMIN = "N"; + $uid = 0; $rid = 0; $MEM = 'N'; $ADMIN = 'N'; // Valid userid? if ((isUserIdSet()) && (getUserId() > 0) && (IS_MEMBER())) { // Is valid user $uid = getUserId(); - $MEM = "Y"; + $MEM = 'Y'; } // END - if if (IS_ADMIN()) { // Is administrator - $ADMIN = "Y"; + $ADMIN = 'Y'; } // END - if if (!empty($GLOBALS['refid'])) { @@ -75,15 +75,15 @@ function FILTER_UPDATE_ONLINE_LIST () { // Now search for the user $result = SQL_QUERY_ESC("SELECT timestamp FROM `{!_MYSQL_PREFIX!}_online` WHERE sid='%s' LIMIT 1", - array(session_id()), __FUNCTION__, __LINE__); + array(session_id()), __FUNCTION__, __LINE__); // Entry found? if (SQL_NUMROWS($result) == 1) { // Then update it SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_online` SET -module='%s', -action='%s', -what='%s', +`module`='%s', +`action`='%s', +`what`='%s', userid=%s, refid=%s, is_member='%s', @@ -91,32 +91,32 @@ is_admin='%s', timestamp=UNIX_TIMESTAMP(), ip='%s' WHERE sid='%s' LIMIT 1", - array( - $GLOBALS['module'], - $GLOBALS['action'], - $GLOBALS['what'], - $uid, - $rid, - $MEM, - $ADMIN, - GET_REMOTE_ADDR(), - session_id() - ), __FUNCTION__, __LINE__ + array( + $GLOBALS['module'], + $GLOBALS['action'], + $GLOBALS['what'], + $uid, + $rid, + $MEM, + $ADMIN, + detectRemoteAddr(), + session_id() + ), __FUNCTION__, __LINE__ ); } else { // No entry does exists so we simply add it! SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_online` (module, action, what, userid, refid, is_member, is_admin, timestamp, sid, ip) VALUES ('%s','%s','%s', %s, %s, '%s','%s', UNIX_TIMESTAMP(), '%s','%s')", - array( - $GLOBALS['module'], - $GLOBALS['action'], - $GLOBALS['what'], - $uid, - $rid, - $MEM, - $ADMIN, - session_id(), - GET_REMOTE_ADDR() - ), __FUNCTION__, __LINE__ + array( + $GLOBALS['module'], + $GLOBALS['action'], + $GLOBALS['what'], + $uid, + $rid, + $MEM, + $ADMIN, + session_id(), + detectRemoteAddr() + ), __FUNCTION__, __LINE__ ); } @@ -125,7 +125,7 @@ WHERE sid='%s' LIMIT 1", // Purge old entries SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_online` WHERE timestamp <= (UNIX_TIMESTAMP() - %s)", - array(getConfig('online_timeout')), __FUNCTION__, __LINE__); + array(getConfig('online_timeout')), __FUNCTION__, __LINE__); } //