oohh 'eck Dangermouse, I'm surprised they didn't pick up on this bug, quiet Penfold I'm thinking

git-svn-id: file:///svn/phpbb/trunk@1399 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2001-11-21 01:20:17 +00:00
parent 276b86e0da
commit 3f820f64c6

View file

@ -197,7 +197,7 @@ function auth($type, $forum_id, $userdata, $f_access = -1)
{ {
while($u_row = $db->sql_fetchrow($a_result)) while($u_row = $db->sql_fetchrow($a_result))
{ {
$u_access[$u_row['forum_id']] = $u_row; $u_access[$u_row['forum_id']][] = $u_row;
} }
} }
} }
@ -333,7 +333,6 @@ function auth($type, $forum_id, $userdata, $f_access = -1)
function auth_check_user($type, $key, $u_access, $is_admin) function auth_check_user($type, $key, $u_access, $is_admin)
{ {
$single_user = 0;
$auth_user = 0; $auth_user = 0;
if(count($u_access)) if(count($u_access))