X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fonline_functions.php;h=31743dfdd7e06a78fd5d7ca0de26ff0c186808ee;hb=ebb5d93c1d0234fff9cf3c46690904174b3fd15d;hp=91c84f1158bb5984491dad8c3f0accc290acd9b6;hpb=09f5758c42a33a56bdd461c946ffe759a59c54aa;p=mailer.git diff --git a/inc/libs/online_functions.php b/inc/libs/online_functions.php index 91c84f1158..31743dfdd7 100644 --- a/inc/libs/online_functions.php +++ b/inc/libs/online_functions.php @@ -14,11 +14,9 @@ * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * - * Needs to be in all Files and every File needs "svn propset * - * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * + * Copyright (c) 2009 - 2011 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -40,7 +38,7 @@ // Some security stuff... if (!defined('__SECURITY')) { die(); -} +} // END - if // Filter for updates/extends on the online list function FILTER_UPDATE_ONLINE_LIST () { @@ -50,29 +48,27 @@ function FILTER_UPDATE_ONLINE_LIST () { // Empty session? if (session_id() == '') { // This is invalid here! - debug_report_bug('Invalid session.'); + debug_report_bug(__FUNCTION__, __LINE__, 'Invalid session.'); } // END - if // Initialize variables $userid = '0'; - $MEM = 'N'; - $ADMIN = 'N'; + $isMember = 'N'; + $isAdmin = 'N'; + $action = getActionFromModuleWhat(getModule(), getWhat()); // Valid userid? - if ((isMemberIdSet()) && (getMemberId() > 0) && (isMember())) { + if (isMember()) { // Is valid user $userid = getMemberId(); - $MEM = 'Y'; + $isMember = 'Y'; } // END - if if (isAdmin()) { // Is administrator - $ADMIN = 'Y'; + $isAdmin = '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__); @@ -87,7 +83,7 @@ SET `action`='%s', `what`='%s', `userid`=%s, - `refid`='%s', + `refid`=%s, `is_member`='%s', `is_admin`='%s', `timestamp`=UNIX_TIMESTAMP(), @@ -97,26 +93,26 @@ WHERE LIMIT 1", array( getModule(), - getAction(), + $action, getWhat(), - $userid, - $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(), - $userid, - $rid, - $MEM, - $ADMIN, + makeDatabaseUserId($userid), + makeDatabaseUserId(determineReferalId()), + $isMember, + $isAdmin, session_id(), detectRemoteAddr() ), __FUNCTION__, __LINE__);