X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Ffilter%2Fonline_filter.php;h=31c22ee1174f3a28db856ef4b8f07ed8d70eda17;hb=6bd47661d7ec406cd276f0835364b1e3f933d6c8;hp=bd7726565414c84eae4f41ff320b61375b9144c4;hpb=8fa01ac88b1208b28b47f57d997db6223f60cb9c;p=mailer.git diff --git a/inc/filter/online_filter.php b/inc/filter/online_filter.php index bd77265654..31c22ee117 100644 --- a/inc/filter/online_filter.php +++ b/inc/filter/online_filter.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2011 by Mailer Developer Team * + * Copyright (c) 2009 - 2012 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -44,22 +44,23 @@ if (!defined('__SECURITY')) { function FILTER_UPDATE_ONLINE_LIST ($filterData) { // Do not update online list when extension is deactivated //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!'); - if (!isExtensionActive('online', true)) { + if (!isExtensionActive('online')) { // Extension not active - return; + /* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Extension ext-online is not active.'); + return $filterData; } // END - if // Empty session? if (session_id() == '') { // This is invalid here! - debug_report_bug(__FUNCTION__, __LINE__, 'Invalid session.'); + reportBug(__FUNCTION__, __LINE__, 'Invalid session.'); } // END - if // Initialize variables $userid = NULL; $isMember = convertBooleanToYesNo(isMember()); $isAdmin = convertBooleanToYesNo(isAdmin()); - $action = getActionFromModuleWhat(getModule(), getWhat(false)); + $action = getActionFromModuleWhat(getModule(), getWhat(FALSE)); // Valid userid? if (isMember()) { @@ -92,7 +93,7 @@ LIMIT 1", array( getModule(), $action, - getWhat(false), + getWhat(FALSE), convertZeroToNull($userid), convertZeroToNull(determineReferralId()), $isMember, @@ -102,11 +103,11 @@ 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(false), + getWhat(FALSE), convertZeroToNull($userid), convertZeroToNull(determineReferralId()), $isMember,