mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-24 02:48:56 +00:00
Fixes problem of guest users only show as viewing index or other 'system' pages
git-svn-id: file:///svn/phpbb/trunk@1850 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
392767e5fd
commit
900891d504
1 changed files with 1 additions and 1 deletions
|
@ -282,7 +282,7 @@ if( count($onlinerow_guest) )
|
|||
$guest_userip_ary[] = $onlinerow_guest[$i]['session_ip'];
|
||||
$guest_users++;
|
||||
|
||||
if($onlinerow_guest[$i]['session_page'] < 1 || !$is_auth_ary[$onlinerow_reg[$i]['session_page']]['auth_view'] )
|
||||
if( $onlinerow_guest[$i]['session_page'] < 1 || !$is_auth_ary[$onlinerow_guest[$i]['session_page']]['auth_view'] )
|
||||
{
|
||||
switch($onlinerow_guest[$i]['session_page'])
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue