Zeile 6 | Zeile 6 |
---|
* Website: http://www.mybboard.net * License: http://www.mybboard.net/about/license *
|
* Website: http://www.mybboard.net * License: http://www.mybboard.net/about/license *
|
* $Id: index.php 4151 2008-08-26 04:39:31Z Tikitiki $
| * $Id: index.php 4249 2008-10-25 05:37:16Z Tikitiki $
|
*/
define("IN_MYBB", 1);
| */
define("IN_MYBB", 1);
|
Zeile 125 | Zeile 125 |
---|
}
// Build the who's online bit on the index page.
|
}
// Build the who's online bit on the index page.
|
$onlinecount = $membercount + $guestcount;
| $onlinecount = $membercount + $guestcount + $botcount; // If we can see invisible users add them to the count if($mybb->usergroup['canviewwolinvis'] == 1) { $onlinecount += $anoncount; } // If we can't see invisible users but the user is an invisible user incriment the count by one if($mybb->usergroup['canviewwolinvis'] != 1 && $mybb->user['invisible'] == 1) { ++$onlinecount; }
|
if($onlinecount != 1) { $onlinebit = $lang->online_online_plural;
| if($onlinecount != 1) { $onlinebit = $lang->online_online_plural;
|