1
0
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:
PayBas
2014-07-16 11:19:28 +02:00
parent 09e5896cae
commit a22549f247

View File

@@ -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');