From 6fa7bec4ed7ca82f88a2a94c2947b29ae89ad00d Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Fri, 9 Mar 2007 16:24:58 +0000 Subject: [PATCH] grmbl git-svn-id: file:///svn/phpbb/trunk@7154 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/memberlist.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpBB/memberlist.php b/phpBB/memberlist.php index d29743d8ff..98f3f37d30 100644 --- a/phpBB/memberlist.php +++ b/phpBB/memberlist.php @@ -372,11 +372,11 @@ switch ($mode) // Normal users are able to see at least users having only changed their profile settings but not yet re-activated. if (!$auth->acl_get('a_user') && $user->data['user_type'] != USER_FOUNDER) { - if ($row['user_type'] == USER_IGNORE) + if ($member['user_type'] == USER_IGNORE) { trigger_error('NO_USER'); } - else if ($row['user_type'] == USER_INACTIVE && $row['user_inactive_reason'] != INACTIVE_PROFILE) + else if ($member['user_type'] == USER_INACTIVE && $member['user_inactive_reason'] != INACTIVE_PROFILE) { trigger_error('NO_USER'); }