aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-04-19 14:24:58 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-04-19 14:24:58 +0000
commit40640febbf1dae142443b44d59313181375f2996 (patch)
tree35583e22df1881c0893e1600524db9de8c6bf7d7
parent1129c4e0aa126f44d36cc017aa37a11fd29d036c (diff)
downloadforums-40640febbf1dae142443b44d59313181375f2996.tar
forums-40640febbf1dae142443b44d59313181375f2996.tar.gz
forums-40640febbf1dae142443b44d59313181375f2996.tar.bz2
forums-40640febbf1dae142443b44d59313181375f2996.tar.xz
forums-40640febbf1dae142443b44d59313181375f2996.zip
Modified as per Nathans suggestion - Mark II
git-svn-id: file:///svn/phpbb/trunk@187 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r--phpBB/templates/Default/viewonline_body.tpl2
-rw-r--r--phpBB/viewonline.php4
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">&nbsp;{L_USERNAME}&nbsp;</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
)
);