From 6a7495102901ccd970cb0da405cd5444e84d3f46 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Sun, 6 May 2001 16:16:22 +0000 Subject: Now allow for GET based session git-svn-id: file:///svn/phpbb/trunk@256 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/viewonline.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'phpBB/viewonline.php') 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) ) ); } -- cgit v1.2.1