diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-11-16 22:51:08 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-11-16 22:51:08 +0000 |
commit | 8787c41e92d20c2f2f57aaba8be0d7ce35dccf46 (patch) | |
tree | 169032d5209ee22188699c6cca98c42d03644453 | |
parent | 5513e195ee63cedfa3eede776fdb946e5e76a700 (diff) | |
download | forums-8787c41e92d20c2f2f57aaba8be0d7ce35dccf46.tar forums-8787c41e92d20c2f2f57aaba8be0d7ce35dccf46.tar.gz forums-8787c41e92d20c2f2f57aaba8be0d7ce35dccf46.tar.bz2 forums-8787c41e92d20c2f2f57aaba8be0d7ce35dccf46.tar.xz forums-8787c41e92d20c2f2f57aaba8be0d7ce35dccf46.zip |
Spelling mistake
git-svn-id: file:///svn/phpbb/trunk@1341 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/includes/page_header.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/page_header.php b/phpBB/includes/page_header.php index ea7751c7c7..aff336e932 100644 --- a/phpBB/includes/page_header.php +++ b/phpBB/includes/page_header.php @@ -146,7 +146,7 @@ $online_userlist = $lang['Registered_users'] . " " . $online_userlist; $total_online_users = $logged_visible_online + $logged_hidden_online + $guests_online; -$l_online_users = ( $total_online_users == 1 ) ? sprintf($lang['Online_user_total'], $total_online_users) : sprintf($lang['Online_users'], $total_online_users); +$l_online_users = ( $total_online_users == 1 ) ? sprintf($lang['Online_user_total'], $total_online_users) : sprintf($lang['Online_users_total'], $total_online_users); $l_online_users .= ( $logged_visible_online == 1 ) ? sprintf($lang['Reg_user_total'], $logged_visible_online) : sprintf($lang['Reg_users_total'], $logged_visible_online); $l_online_users .= ( $logged_hidden_online == 1 ) ? sprintf($lang['Hidden_user_total'], $logged_hidden_online) : sprintf($lang['Hidden_user_total'], $logged_hidden_online); $l_online_users .= ( $guests_online == 1 ) ? sprintf($lang['Guest_user_total'], $guests_online) : sprintf($lang['Guest_user_total'], $guests_online); |