diff options
Diffstat (limited to 'phpBB')
| -rw-r--r-- | phpBB/templates/Default/viewonline_body.tpl | 2 | ||||
| -rw-r--r-- | phpBB/viewonline.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/templates/Default/viewonline_body.tpl b/phpBB/templates/Default/viewonline_body.tpl index 691f853cc3..1093f74eed 100644 --- a/phpBB/templates/Default/viewonline_body.tpl +++ b/phpBB/templates/Default/viewonline_body.tpl @@ -3,7 +3,7 @@ <tr> <td><table border="0" width="100%" cellpadding="3" cellspacing="1"> <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 class="catheader"> <td width="35%" align="center"> {L_USERNAME} </td> diff --git a/phpBB/viewonline.php b/phpBB/viewonline.php index 972cae5730..b074909e15 100644 --- a/phpBB/viewonline.php +++ b/phpBB/viewonline.php @@ -168,8 +168,8 @@ if($online_count) } $template->assign_vars(array( - "L_ACTIVE_USERS" => $active_users, - "L_GUEST_USERS" => $guest_users + "ACTIVE_USERS" => $active_users, + "GUEST_USERS" => $guest_users ) ); |
