mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-02 23:07:39 +02:00
[ticket/12837] Use else if instead of elseif
PHPBB3-12837
This commit is contained in:
@@ -301,7 +301,7 @@ while ($row = $db->sql_fetchrow($result))
|
|||||||
{
|
{
|
||||||
$location = $user->lang['VIEWING_MEMBER_PROFILE'];
|
$location = $user->lang['VIEWING_MEMBER_PROFILE'];
|
||||||
}
|
}
|
||||||
elseif (strpos($row['session_page'], 'mode=contactadmin') !== false)
|
else if (strpos($row['session_page'], 'mode=contactadmin') !== false)
|
||||||
{
|
{
|
||||||
$location = $user->lang['VIEWING_CONTACT_ADMIN'];
|
$location = $user->lang['VIEWING_CONTACT_ADMIN'];
|
||||||
$location_url = append_sid("{$phpbb_root_path}memberlist.$phpEx", 'mode=contactadmin');
|
$location_url = append_sid("{$phpbb_root_path}memberlist.$phpEx", 'mode=contactadmin');
|
||||||
|
Reference in New Issue
Block a user