X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Ffilter%2Fonline_filter.php;h=68e73929e5a53d8fc4e6b9fbce7e3ea8f874c2d9;hp=ca48771cd95e1bdfd76849b0f5be8512a1fa64f2;hb=f4d7dc336fde4cebc47701026a94d193f77854a1;hpb=2e394cb5b8a6225a39a6942b1fcc17c37a17a175 diff --git a/inc/filter/online_filter.php b/inc/filter/online_filter.php index ca48771cd9..68e73929e5 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 ($data) { // Do not update online list when extension is deactivated + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!'); if (!isExtensionActive('online', true)) { // Extension not active return; @@ -56,20 +57,14 @@ function FILTER_UPDATE_ONLINE_LIST () { // Initialize variables $userid = '0'; - $isMember = 'N'; - $isAdmin = 'N'; - $action = getActionFromModuleWhat(getModule(), getWhat()); + $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 @@ -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 $data; } // [EOF]