mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-25 20:44:01 +01:00
Merge branch 'develop-ascraeus' into develop
* develop-ascraeus: [ticket/12837] Use else if instead of elseif [ticket/12837] Detect "viewing contact admin page" on viewonline
This commit is contained in:
commit
ec4886a266
@ -821,6 +821,7 @@ $lang = array_merge($lang, array(
|
||||
1 => 'Viewed %d time',
|
||||
2 => 'Viewed %d times',
|
||||
),
|
||||
'VIEWING_CONTACT_ADMIN' => 'Viewing contact page',
|
||||
'VIEWING_FAQ' => 'Viewing FAQ',
|
||||
'VIEWING_MEMBERS' => 'Viewing member details',
|
||||
'VIEWING_ONLINE' => 'Viewing who is online',
|
||||
|
@ -295,8 +295,21 @@ while ($row = $db->sql_fetchrow($result))
|
||||
break;
|
||||
|
||||
case 'memberlist':
|
||||
$location = (strpos($row['session_page'], 'mode=viewprofile') !== false) ? $user->lang['VIEWING_MEMBER_PROFILE'] : $user->lang['VIEWING_MEMBERS'];
|
||||
$location_url = append_sid("{$phpbb_root_path}memberlist.$phpEx");
|
||||
|
||||
if (strpos($row['session_page'], 'mode=viewprofile') !== false)
|
||||
{
|
||||
$location = $user->lang['VIEWING_MEMBER_PROFILE'];
|
||||
}
|
||||
else if (strpos($row['session_page'], 'mode=contactadmin') !== false)
|
||||
{
|
||||
$location = $user->lang['VIEWING_CONTACT_ADMIN'];
|
||||
$location_url = append_sid("{$phpbb_root_path}memberlist.$phpEx", 'mode=contactadmin');
|
||||
}
|
||||
else
|
||||
{
|
||||
$location = $user->lang['VIEWING_MEMBERS'];
|
||||
}
|
||||
break;
|
||||
|
||||
case 'mcp':
|
||||
|
Loading…
x
Reference in New Issue
Block a user