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:
Paul S. Owen 2002-01-12 13:51:42 +00:00
parent 392767e5fd
commit 900891d504

View file

@ -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'])
{