Posting lang for viewonline

git-svn-id: file:///svn/phpbb/trunk@680 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2001-07-16 21:12:09 +00:00
parent 9793a271b4
commit ddd401d276
2 changed files with 6 additions and 5 deletions

View file

@ -457,7 +457,8 @@ $lang['Location'] = "Location";
$lang['Last_updated'] = "Last Updated";
$lang['Forum_index'] = "Forum index";
$lang['Loggin_on'] = "Logging on";
$lang['Logging_on'] = "Logging on";
$lang['Posting_message'] = "Posting a message";
$lang['Searching_forums'] = "Searching forums";
$lang['Viewing_profile'] = "Viewing profile";
$lang['Viewing_online'] = "Viewing who is online";

View file

@ -70,7 +70,7 @@ if(!$result = $db->sql_query($sql))
$onlinerow = $db->sql_fetchrowset($result);
$sql = "SELECT forum_name, forum_id
FROM ".FORUMS_TABLE;
FROM " . FORUMS_TABLE;
if($forums_result = $db->sql_query($sql))
{
while($forumsrow = $db->sql_fetchrow($forums_result))
@ -162,11 +162,11 @@ if($online_count)
$location_url = "index.$phpEx";
break;
case PAGE_POSTING:
$location = "";
$location_url = "";
$location = $lang['Posting_message']"";
$location_url = "index.$phpEx";
break;
case PAGE_LOGIN:
$location = $lang['Loggin_on'];
$location = $lang['Logging_on'];
$location_url = "index.$phpEx";
break;
case PAGE_SEARCH: