aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewonline.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-05-06 16:16:22 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-05-06 16:16:22 +0000
commit6a7495102901ccd970cb0da405cd5444e84d3f46 (patch)
treed7eeb84690dd5c91286c58fda0756a01c9d5bd46 /phpBB/viewonline.php
parent99edaf843c182b7c79ef4117c6cd357071d0a306 (diff)
downloadforums-6a7495102901ccd970cb0da405cd5444e84d3f46.tar
forums-6a7495102901ccd970cb0da405cd5444e84d3f46.tar.gz
forums-6a7495102901ccd970cb0da405cd5444e84d3f46.tar.bz2
forums-6a7495102901ccd970cb0da405cd5444e84d3f46.tar.xz
forums-6a7495102901ccd970cb0da405cd5444e84d3f46.zip
Now allow for GET based session
git-svn-id: file:///svn/phpbb/trunk@256 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/viewonline.php')
-rw-r--r--phpBB/viewonline.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/viewonline.php b/phpBB/viewonline.php
index 31ae163e05..e5b7158756 100644
--- a/phpBB/viewonline.php
+++ b/phpBB/viewonline.php
@@ -171,7 +171,7 @@ if($online_count)
}
else
{
- $location_url = "viewforum.".$phpEx."?".POST_FORUM_URL."=".$onlinerow[$i]['forum_id'];
+ $location_url = append_sid("viewforum.".$phpEx."?".POST_FORUM_URL."=".$onlinerow[$i]['forum_id']);
$location = $onlinerow[$i]['forum_name'];
}
@@ -192,8 +192,8 @@ if($online_count)
"LOGGED_ON" => $logged_on,
"LASTUPDATE" => create_date($board_config['default_dateformat'], $onlinerow[$i]['session_time'], $board_config['default__timezone']),
"LOCATION" => $location,
- "U_USER_PROFILE" => "profile.".$phpEx."?mode=viewprofile&".POST_USERS_URL."=".$onlinerow[$i]['user_id'],
- "U_FORUM_LOCATION" => $location_url
+ "U_USER_PROFILE" => append_sid("profile.".$phpEx."?mode=viewprofile&".POST_USERS_URL."=".$onlinerow[$i]['user_id']),
+ "U_FORUM_LOCATION" => append_sid($location_url)
)
);
}