mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
Now allow for GET based session
git-svn-id: file:///svn/phpbb/trunk@256 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -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)
|
||||
)
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user