mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 05:18:52 +00:00
Modified as per Nathans suggestion - Mark II
git-svn-id: file:///svn/phpbb/trunk@187 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
1129c4e0aa
commit
40640febbf
2 changed files with 3 additions and 3 deletions
|
@ -3,7 +3,7 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td><table border="0" width="100%" cellpadding="3" cellspacing="1">
|
<td><table border="0" width="100%" cellpadding="3" cellspacing="1">
|
||||||
<tr class="tableheader">
|
<tr class="tableheader">
|
||||||
<td colspan="4" align="center"><b>There are {L_ACTIVE_USERS} active users and {L_GUEST_USERS} guest users browsing this board.</b><br />This table lists all logged in users active in the past five minutes.</td>
|
<td colspan="4" align="center"><b>There are {ACTIVE_USERS} logged in users and {GUEST_USERS} guest users browsing this board.</b><br />This data is based on users active over the past five minutes.</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="catheader">
|
<tr class="catheader">
|
||||||
<td width="35%" align="center"> {L_USERNAME} </td>
|
<td width="35%" align="center"> {L_USERNAME} </td>
|
||||||
|
|
|
@ -168,8 +168,8 @@ if($online_count)
|
||||||
}
|
}
|
||||||
|
|
||||||
$template->assign_vars(array(
|
$template->assign_vars(array(
|
||||||
"L_ACTIVE_USERS" => $active_users,
|
"ACTIVE_USERS" => $active_users,
|
||||||
"L_GUEST_USERS" => $guest_users
|
"GUEST_USERS" => $guest_users
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue