Zeile 234 | Zeile 234 |
---|
$timesearch = TIME_NOW - $mybb->settings['wolcutoff']; $guestcount = $membercount = $botcount = $anoncount = 0;
|
$timesearch = TIME_NOW - $mybb->settings['wolcutoff']; $guestcount = $membercount = $botcount = $anoncount = 0;
|
$onlinemembers = $onlinebots = $comma = ''; $doneusers = array();
| $doneusers = $onlinemembers = $onlinebots = array();
$query = $db->simple_select("sessions", "COUNT(DISTINCT ip) AS guestcount", "uid = 0 AND time > $timesearch"); $guestcount = $db->fetch_field($query, "guestcount");
|
$query = $db->query("
|
$query = $db->query("
|
SELECT s.sid, s.ip, s.uid, s.time, s.location, u.username, u.invisible, u.usergroup, u.displaygroup FROM ".TABLE_PREFIX."sessions s LEFT JOIN ".TABLE_PREFIX."users u ON (s.uid=u.uid) WHERE s.time>'$timesearch'
| SELECT s.sid, s.ip, s.uid, s.time, s.location, u.username, u.invisible, u.usergroup, u.displaygroup FROM ".TABLE_PREFIX."sessions s LEFT JOIN ".TABLE_PREFIX."users u ON (s.uid=u.uid) WHERE (s.uid != 0 OR SUBSTR(s.sid,4,1) = '=') AND s.time > $timesearch
|
ORDER BY {$order_by}, {$order_by2} ");
// Fetch spiders $spiders = $cache->read('spiders');
|
ORDER BY {$order_by}, {$order_by2} ");
// Fetch spiders $spiders = $cache->read('spiders');
|
|
|
while($user = $db->fetch_array($query)) {
|
while($user = $db->fetch_array($query)) {
|
|
|
// Create a key to test if this user is a search bot. $botkey = my_strtolower(str_replace("bot=", '', $user['sid']));
|
// Create a key to test if this user is a search bot. $botkey = my_strtolower(str_replace("bot=", '', $user['sid']));
|
if($user['uid'] == "0") { ++$guestcount; } elseif(my_strpos($user['sid'], 'bot=') !== false && $spiders[$botkey]) { // The user is a search bot. $onlinebots .= $comma.format_name($spiders[$botkey]['name'], $spiders[$botkey]['usergroup']); $comma = $lang->comma; ++$botcount; } else
| if($user['uid'] > 0)
|
{ if(empty($doneusers[$user['uid']]) || $doneusers[$user['uid']] < $user['time']) {
| { if(empty($doneusers[$user['uid']]) || $doneusers[$user['uid']] < $user['time']) {
|
Zeile 279 | Zeile 273 |
---|
}
if($user['invisible'] == 1)
|
}
if($user['invisible'] == 1)
|
{
| {
|
$invisiblemark = "*";
|
$invisiblemark = "*";
|
}
| }
|
else { $invisiblemark = '';
|
else { $invisiblemark = '';
|
}
| }
|
if(($user['invisible'] == 1 && ($mybb->usergroup['canviewwolinvis'] == 1 || $user['uid'] == $mybb->user['uid'])) || $user['invisible'] != 1) { $user['username'] = format_name(htmlspecialchars_uni($user['username']), $user['usergroup'], $user['displaygroup']); $user['profilelink'] = get_profile_link($user['uid']);
|
if(($user['invisible'] == 1 && ($mybb->usergroup['canviewwolinvis'] == 1 || $user['uid'] == $mybb->user['uid'])) || $user['invisible'] != 1) { $user['username'] = format_name(htmlspecialchars_uni($user['username']), $user['usergroup'], $user['displaygroup']); $user['profilelink'] = get_profile_link($user['uid']);
|
eval("\$onlinemembers .= \"".$templates->get("portal_whosonline_memberbit", 1, 0)."\";"); $comma = $lang->comma;
| eval("\$onlinemembers[] = \"".$templates->get("portal_whosonline_memberbit", 1, 0)."\";");
|
} }
|
} }
|
| } elseif(my_strpos($user['sid'], 'bot=') !== false && $spiders[$botkey]) { // The user is a search bot. if($mybb->settings['wolorder'] == 'username') { $key = $spiders[$botkey]['name']; } else { $key = $user['time']; }
$onlinebots[$key] = format_name($spiders[$botkey]['name'], $spiders[$botkey]['usergroup']); ++$botcount;
|
} }
|
} }
|
if(trim($onlinebots) == "" || trim($onlinemembers) == "") { $comma = ""; }
| if($mybb->settings['wolorder'] == 'activity') { // activity ordering is DESC, username is ASC krsort($onlinebots); } else { ksort($onlinebots); }
$onlinemembers = array_merge($onlinebots, $onlinemembers); if(!empty($onlinemembers)) { $comma = $lang->comma." "; $onlinemembers = implode($comma, $onlinemembers); }
|
else {
|
else {
|
$comma = $lang->comma;
| $onlinemembers = "";
|
}
|
}
|
$onlinemembers = $onlinebots.$comma.$onlinemembers;
| |
$onlinecount = $membercount + $guestcount + $botcount;
| $onlinecount = $membercount + $guestcount + $botcount;
|