aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/includes/auth.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/phpBB/includes/auth.php b/phpBB/includes/auth.php
index d2bb461fa3..85164884ec 100644
--- a/phpBB/includes/auth.php
+++ b/phpBB/includes/auth.php
@@ -197,7 +197,7 @@ function auth($type, $forum_id, $userdata, $f_access = -1)
{
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)
{
- $single_user = 0;
$auth_user = 0;
if(count($u_access))