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 4081 2008-08-08 01:47:02Z Tikitiki $
| * $Id: index.php 4304 2009-01-02 01:11:56Z chris $
|
*/
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($onlinecount != 1)
|
if($onlinecount != 1)
|
{
| {
|
$onlinebit = $lang->online_online_plural;
|
$onlinebit = $lang->online_online_plural;
|
}
| }
|
else { $onlinebit = $lang->online_online_singular; } if($membercount != 1)
|
else { $onlinebit = $lang->online_online_singular; } if($membercount != 1)
|
{
| {
|
$memberbit = $lang->online_member_plural;
|
$memberbit = $lang->online_member_plural;
|
}
| }
|
else
|
else
|
{
| {
|
$memberbit = $lang->online_member_singular; } if($anoncount != 1) { $anonbit = $lang->online_anon_plural;
|
$memberbit = $lang->online_member_singular; } if($anoncount != 1) { $anonbit = $lang->online_anon_plural;
|
} else {
| } else {
|
$anonbit = $lang->online_anon_singular;
|
$anonbit = $lang->online_anon_singular;
|
}
| }
|
if($guestcount != 1) { $guestbit = $lang->online_guest_plural; } else
|
if($guestcount != 1) { $guestbit = $lang->online_guest_plural; } else
|
{
| {
|
$guestbit = $lang->online_guest_singular; } $lang->online_note = $lang->sprintf($lang->online_note, my_number_format($onlinecount), $onlinebit, $mybb->settings['wolcutoffmins'], my_number_format($membercount), $memberbit, my_number_format($anoncount), $anonbit, my_number_format($guestcount), $guestbit);
| $guestbit = $lang->online_guest_singular; } $lang->online_note = $lang->sprintf($lang->online_note, my_number_format($onlinecount), $onlinebit, $mybb->settings['wolcutoffmins'], my_number_format($membercount), $memberbit, my_number_format($anoncount), $anonbit, my_number_format($guestcount), $guestbit);
|
Zeile 175 | Zeile 176 |
---|
$bdaycache = $cache->read("birthdays"); if(!is_array($bdaycache))
|
$bdaycache = $cache->read("birthdays"); if(!is_array($bdaycache))
|
{
| {
|
$cache->update_birthdays(); $bdaycache = $cache->read("birthdays"); }
|
$cache->update_birthdays(); $bdaycache = $cache->read("birthdays"); }
|
|
|
$hiddencount = $bdaycache[$bdaydate]['hiddencount']; $today_bdays = $bdaycache[$bdaydate]['users']; $comma = ''; if(!empty($today_bdays))
|
$hiddencount = $bdaycache[$bdaydate]['hiddencount']; $today_bdays = $bdaycache[$bdaydate]['users']; $comma = ''; if(!empty($today_bdays))
|
{
| {
|
foreach($today_bdays as $bdayuser) { $bday = explode("-", $bdayuser['birthday']);
| foreach($today_bdays as $bdayuser) { $bday = explode("-", $bdayuser['birthday']);
|
Zeile 203 | Zeile 204 |
---|
++$bdaycount; $comma = ", "; }
|
++$bdaycount; $comma = ", "; }
|
if($hiddencount > 0)
| } if($hiddencount > 0) { if($bdaycount > 0)
|
{
|
{
|
if($bdaycount > 0) { $bdays .= " - "; } $bdays .= "{$hiddencount} {$lang->birthdayhidden}";
| $bdays .= " - ";
|
}
|
}
|
| $bdays .= "{$hiddencount} {$lang->birthdayhidden}";
|
} // If there are one or more birthdays, show them.
| } // If there are one or more birthdays, show them.
|