X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fonline_functions.php;h=85c04334cd45cec88542e884df44415176564c44;hb=62d8f6d89c35bebe15b8f716a5629f14d95f3078;hp=0348497e653d61eabc66243f9e87ac155c72e31a;hpb=63dd53434c74dbba1e9310af2a7f267e2823459f;p=mailer.git diff --git a/inc/libs/online_functions.php b/inc/libs/online_functions.php index 0348497e65..85c04334cd 100644 --- a/inc/libs/online_functions.php +++ b/inc/libs/online_functions.php @@ -1,7 +1,7 @@ 0) && (IS_MEMBER())) { + if (isMember()) { // Is valid user - $uid = getUserId(); - $MEM = 'Y'; + $userid = getMemberId(); + $isMember = 'Y'; } // END - if - if (IS_ADMIN()) { + if (isAdmin()) { // Is administrator - $ADMIN = 'Y'; - } // END - if - - if (!empty($GLOBALS['refid'])) { - // Read cookie - $rid = bigintval($GLOBALS['refid']); + $isAdmin = 'Y'; } // END - if // 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__); + $result = SQL_QUERY_ESC("SELECT `timestamp` FROM `{?_MYSQL_PREFIX?}_online` WHERE `sid`='%s' LIMIT 1", + array(session_id()), __FUNCTION__, __LINE__); // Entry found? if (SQL_NUMROWS($result) == 1) { // Then update it SQL_QUERY_ESC("UPDATE - `{!_MYSQL_PREFIX!}_online` + `{?_MYSQL_PREFIX?}_online` SET `module`='%s', `action`='%s', @@ -97,26 +93,26 @@ WHERE LIMIT 1", array( getModule(), - getAction(), + $action, getWhat(), - $uid, - $rid, - $MEM, - $ADMIN, + makeDatabaseUserId($userid), + makeDatabaseUserId(determineReferalId()), + $isMember, + $isAdmin, 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')", + 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( getModule(), - getAction(), + $action, getWhat(), - $uid, - $rid, - $MEM, - $ADMIN, + makeDatabaseUserId($userid), + makeDatabaseUserId(determineReferalId()), + $isMember, + $isAdmin, session_id(), detectRemoteAddr() ), __FUNCTION__, __LINE__); @@ -126,8 +122,7 @@ LIMIT 1", SQL_FREERESULT($result); // Purge old entries - SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_online` WHERE `timestamp` <= (UNIX_TIMESTAMP() - %s)", - array(getConfig('online_timeout')), __FUNCTION__, __LINE__); + SQL_QUERY('DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_online` WHERE `timestamp` <= (UNIX_TIMESTAMP() - {?online_timeout?})', __FUNCTION__, __LINE__); } // [EOF]