diff options
author | PayBas <contact@paybas.com> | 2014-07-16 11:19:28 +0200 |
---|---|---|
committer | PayBas <contact@paybas.com> | 2014-07-16 11:19:28 +0200 |
commit | a22549f2477533e5efc1bb7038428e5982f0ccf2 (patch) | |
tree | 33e1cfe63dbf2146a5b425ecc913adf9a945a41b /phpBB/viewonline.php | |
parent | 09e5896cae23534532d9f44fefc43f4b3f846f1c (diff) | |
download | forums-a22549f2477533e5efc1bb7038428e5982f0ccf2.tar forums-a22549f2477533e5efc1bb7038428e5982f0ccf2.tar.gz forums-a22549f2477533e5efc1bb7038428e5982f0ccf2.tar.bz2 forums-a22549f2477533e5efc1bb7038428e5982f0ccf2.tar.xz forums-a22549f2477533e5efc1bb7038428e5982f0ccf2.zip |
[ticket/12837] Use else if instead of elseif
PHPBB3-12837
Diffstat (limited to 'phpBB/viewonline.php')
-rw-r--r-- | phpBB/viewonline.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewonline.php b/phpBB/viewonline.php index 38e2ced341..a03a81a15e 100644 --- a/phpBB/viewonline.php +++ b/phpBB/viewonline.php @@ -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'); |