|
From: Paul S. O. <ps...@us...> - 2001-11-21 01:20:21
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv1587/includes
Modified Files:
auth.php
Log Message:
oohh 'eck Dangermouse, I'm surprised they didn't pick up on this bug, quiet Penfold I'm thinking
Index: auth.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/auth.php,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -r1.32 -r1.33
*** auth.php 2001/09/16 18:23:57 1.32
--- auth.php 2001/11/21 01:20:17 1.33
***************
*** 198,202 ****
while($u_row = $db->sql_fetchrow($a_result))
{
! $u_access[$u_row['forum_id']] = $u_row;
}
}
--- 198,202 ----
while($u_row = $db->sql_fetchrow($a_result))
{
! $u_access[$u_row['forum_id']][] = $u_row;
}
}
***************
*** 334,338 ****
function auth_check_user($type, $key, $u_access, $is_admin)
{
- $single_user = 0;
$auth_user = 0;
--- 334,337 ----
|