mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/12837] Detect "viewing contact admin page" on viewonline
PHPBB3-12837
This commit is contained in:
parent
496b34cd96
commit
09e5896cae
2 changed files with 15 additions and 1 deletions
|
@ -821,6 +821,7 @@ $lang = array_merge($lang, array(
|
||||||
1 => 'Viewed %d time',
|
1 => 'Viewed %d time',
|
||||||
2 => 'Viewed %d times',
|
2 => 'Viewed %d times',
|
||||||
),
|
),
|
||||||
|
'VIEWING_CONTACT_ADMIN' => 'Viewing contact page',
|
||||||
'VIEWING_FAQ' => 'Viewing FAQ',
|
'VIEWING_FAQ' => 'Viewing FAQ',
|
||||||
'VIEWING_MEMBERS' => 'Viewing member details',
|
'VIEWING_MEMBERS' => 'Viewing member details',
|
||||||
'VIEWING_ONLINE' => 'Viewing who is online',
|
'VIEWING_ONLINE' => 'Viewing who is online',
|
||||||
|
|
|
@ -295,8 +295,21 @@ while ($row = $db->sql_fetchrow($result))
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'memberlist':
|
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");
|
$location_url = append_sid("{$phpbb_root_path}memberlist.$phpEx");
|
||||||
|
|
||||||
|
if (strpos($row['session_page'], 'mode=viewprofile') !== false)
|
||||||
|
{
|
||||||
|
$location = $user->lang['VIEWING_MEMBER_PROFILE'];
|
||||||
|
}
|
||||||
|
elseif (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;
|
break;
|
||||||
|
|
||||||
case 'mcp':
|
case 'mcp':
|
||||||
|
|
Loading…
Add table
Reference in a new issue