X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Ffilter%2Fonline_filter.php;h=710e76d92137df2b57a122d9fa5e7873d19212ec;hp=ca48771cd95e1bdfd76849b0f5be8512a1fa64f2;hb=0f3a135204757cc8750262871c8e62c42300acb4;hpb=2e394cb5b8a6225a39a6942b1fcc17c37a17a175 diff --git a/inc/filter/online_filter.php b/inc/filter/online_filter.php index ca48771cd9..710e76d921 100644 --- a/inc/filter/online_filter.php +++ b/inc/filter/online_filter.php @@ -41,8 +41,9 @@ if (!defined('__SECURITY')) { } // END - if // Filter for updates/extends on the online list -function FILTER_UPDATE_ONLINE_LIST () { +function FILTER_UPDATE_ONLINE_LIST ($filterData) { // Do not update online list when extension is deactivated + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!'); if (!isExtensionActive('online', true)) { // Extension not active return; @@ -55,21 +56,15 @@ function FILTER_UPDATE_ONLINE_LIST () { } // END - if // Initialize variables - $userid = '0'; - $isMember = 'N'; - $isAdmin = 'N'; - $action = getActionFromModuleWhat(getModule(), getWhat()); + $userid = NULL; + $isMember = convertBooleanToYesNo(isMember()); + $isAdmin = convertBooleanToYesNo(isAdmin()); + $action = getActionFromModuleWhat(getModule(), getWhat()); // Valid userid? if (isMember()) { - // Is valid user + // Is valid user, so get the userid $userid = getMemberId(); - $isMember = 'Y'; - } // END - if - - if (isAdmin()) { - // Is administrator - $isAdmin = 'Y'; } // END - if // Now search for the user @@ -98,8 +93,8 @@ LIMIT 1", getModule(), $action, getWhat(), - makeDatabaseUserId($userid), - makeDatabaseUserId(determineReferalId()), + makeZeroToNull($userid), + makeZeroToNull(determineReferalId()), $isMember, $isAdmin, detectRemoteAddr(), @@ -107,13 +102,13 @@ LIMIT 1", ), __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(), $action, getWhat(), - makeDatabaseUserId($userid), - makeDatabaseUserId(determineReferalId()), + makeZeroToNull($userid), + makeZeroToNull(determineReferalId()), $isMember, $isAdmin, session_id(), @@ -126,6 +121,10 @@ LIMIT 1", // Purge old entries SQL_QUERY('DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_online` WHERE (UNIX_TIMESTAMP() - `timestamp`) >= {?online_timeout?}', __FUNCTION__, __LINE__); + + // Return data + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Done!'); + return $filterData; } // [EOF]