diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-07-01 15:36:55 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-07-01 15:36:55 +0000 |
commit | b1f6fe7537bbffc8b8f3dd92da7a26629bdedf39 (patch) | |
tree | 5d0d28a503fa0afea62e800d3041039f8e2fa85a /phpBB | |
parent | 520eec3ee43a0a4cf3a3d2a3b10452a763825e89 (diff) | |
download | forums-b1f6fe7537bbffc8b8f3dd92da7a26629bdedf39.tar forums-b1f6fe7537bbffc8b8f3dd92da7a26629bdedf39.tar.gz forums-b1f6fe7537bbffc8b8f3dd92da7a26629bdedf39.tar.bz2 forums-b1f6fe7537bbffc8b8f3dd92da7a26629bdedf39.tar.xz forums-b1f6fe7537bbffc8b8f3dd92da7a26629bdedf39.zip |
Updates to viewonline location output
git-svn-id: file:///svn/phpbb/trunk@533 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rwxr-xr-x | phpBB/language/lang_english.php | 4 | ||||
-rw-r--r-- | phpBB/viewonline.php | 12 |
2 files changed, 3 insertions, 13 deletions
diff --git a/phpBB/language/lang_english.php b/phpBB/language/lang_english.php index 92287fb171..9341edfd8a 100755 --- a/phpBB/language/lang_english.php +++ b/phpBB/language/lang_english.php @@ -300,9 +300,7 @@ $lang['Last_updated'] = "Last Updated"; $lang['Forum_index'] = "Forum index"; $lang['Loggin_on'] = "Logging on"; $lang['Searching_forums'] = "Searching forums"; -$lang['Registering'] = "Registering"; -$lang['Viewing_profiles'] = "Viewing profiles"; -$lang['Altering_profile'] = "Altering profile"; +$lang['Viewing_profile'] = "Viewing profile"; $lang['Viewing_online'] = "Viewing who is online"; $lang['Viewing_member_list'] = "Viewing member list"; $lang['Viewing_priv_msgs'] = "Viewing Private Messages"; diff --git a/phpBB/viewonline.php b/phpBB/viewonline.php index b8b26eefa1..2d3ef9f54f 100644 --- a/phpBB/viewonline.php +++ b/phpBB/viewonline.php @@ -173,16 +173,8 @@ if($online_count) $location = $lang['Searching_forums']; $location_url = "search.$phpEx"; break; - case PAGE_REGISTER: - $location = $lang['Registering']; - $location_url = "index.$phpEx"; - break; - case PAGE_VIEWPROFILE: - $location = $lang['Viewing_profiles']; - $location_url = "index.$phpEx"; - break; - case PAGE_ALTERPROFILE: - $location = $lang['Altering_profile']; + case PAGE_PROFILE: + $location = $lang['Viewing_profile']; $location_url = "index.$phpEx"; break; case PAGE_VIEWONLINE: |