X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Flibs%2Fonline_functions.php;h=bc8818fa22f5e8d14fb604deb73f193cd5632a4f;hp=fb7dfc7c89fec524e0bd8d56c46cbf2e4470e11b;hb=8fad776382e63b3f73f8dbe289f229d79cfc2c22;hpb=64c8349613addc3da2242c5cd6b99d64e3fb5f8e diff --git a/inc/libs/online_functions.php b/inc/libs/online_functions.php index fb7dfc7c89..bc8818fa22 100644 --- a/inc/libs/online_functions.php +++ b/inc/libs/online_functions.php @@ -1,7 +1,7 @@ 0) && (isMember())) { - // Is valid user - $userid = getUserId(); - $MEM = 'Y'; - } // END - if - - if (isAdmin()) { - // Is administrator - $ADMIN = 'Y'; - } // END - if - - // Get refid - $rid = determineReferalId(); - - // 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__); - - // Entry found? - if (SQL_NUMROWS($result) == 1) { - // Then update it - SQL_QUERY_ESC("UPDATE - `{?_MYSQL_PREFIX?}_online` -SET - `module`='%s', - `action`='%s', - `what`='%s', - `userid`=%s, - `refid`=%s, - `is_member`='%s', - `is_admin`='%s', - `timestamp`=UNIX_TIMESTAMP(), - `ip`='%s' -WHERE - `sid`='%s' -LIMIT 1", - array( - getModule(), - getAction(), - getWhat(), - $userid, - $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( - getModule(), - getAction(), - getWhat(), - $userid, - $rid, - $MEM, - $ADMIN, - session_id(), - detectRemoteAddr() - ), __FUNCTION__, __LINE__); - } - - // Free result - SQL_FREERESULT($result); - - // Purge old entries - SQL_QUERY("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_online` WHERE `timestamp` <= (UNIX_TIMESTAMP() - {?online_timeout?})", __FUNCTION__, __LINE__); -} +} // END - if // [EOF] ?>