Zeile 217 | Zeile 217 |
---|
eval("\$search = \"".$templates->get("portal_search")."\";"); }
|
eval("\$search = \"".$templates->get("portal_search")."\";"); }
|
| $onlinecount = null;
|
$whosonline = ''; // Get the online users if($mybb->settings['portal_showwol'] != 0 && $mybb->usergroup['canviewonline'] != 0)
| $whosonline = ''; // Get the online users if($mybb->settings['portal_showwol'] != 0 && $mybb->usergroup['canviewonline'] != 0)
|
Zeile 343 | Zeile 344 |
---|
// Most users online $mostonline = $cache->read("mostonline");
|
// Most users online $mostonline = $cache->read("mostonline");
|
if($onlinecount > $mostonline['numusers'])
| if($onlinecount !== null && $onlinecount > $mostonline['numusers'])
|
{ $time = TIME_NOW; $mostonline['numusers'] = $onlinecount;
| { $time = TIME_NOW; $mostonline['numusers'] = $onlinecount;
|
Zeile 715 | Zeile 716 |
---|
eval("\$post['thumblist'] .= \"".$templates->get("postbit_attachments_thumbnails_thumbnail")."\";"); if($tcount == 5) {
|
eval("\$post['thumblist'] .= \"".$templates->get("postbit_attachments_thumbnails_thumbnail")."\";"); if($tcount == 5) {
|
$thumblist .= "<br />";
| $post['thumblist'] .= "<br />";
|
$tcount = 0; } ++$tcount;
| $tcount = 0; } ++$tcount;
|