mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
[ticket/12837] Use else if instead of elseif
PHPBB3-12837
This commit is contained in:
parent
09e5896cae
commit
a22549f247
1 changed files with 1 additions and 1 deletions
|
@ -301,7 +301,7 @@ while ($row = $db->sql_fetchrow($result))
|
|||
{
|
||||
$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_url = append_sid("{$phpbb_root_path}memberlist.$phpEx", 'mode=contactadmin');
|
||||
|
|
Loading…
Add table
Reference in a new issue